:root {
            --bg-primary: #000000;
            --bg-secondary: #0a0a0a;
            --bg-tertiary: #111111;
            --bg-card: #0f0f0f;
            --bg-glass: rgba(255, 255, 255, 0.02);
            --bg-glass-hover: rgba(255, 255, 255, 0.04);
            --border-subtle: rgba(255, 255, 255, 0.06);
            --border-medium: rgba(255, 255, 255, 0.1);
            --border-strong: rgba(255, 255, 255, 0.15);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.4);
            --text-disabled: rgba(255, 255, 255, 0.2);
            --accent-blue: #0099ff;
            --accent-purple: #6366f1;
            --accent-green: #00d4aa;
            --gradient-primary: linear-gradient(135deg, #0099ff 0%, #6366f1 100%);
            --gradient-secondary: linear-gradient(135deg, rgba(0, 153, 255, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
           --gradient-hero: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 153, 255, 0.25), transparent 70%);
 --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
            --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.7);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

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

        /* ========== Header - Exact Framer Style ========== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid var(--border-subtle);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
            height: 64px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
        }

        .logo {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 2px;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-menu a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 400;
            font-size: 14px;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .nav-menu a:hover {
            color: var(--text-primary);
        }

        .nav-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        /* ========== Buttons - Framer Style ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 8px 16px;
            border: 1px solid transparent;
            border-radius: 8px;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-secondary);
            border-color: transparent;
        }

        .btn-ghost:hover {
            background: var(--bg-glass);
            color: var(--text-primary);
            border-color: var(--border-subtle);
        }

        .btn-primary {
            background: var(--text-primary);
            color: var(--bg-primary);
            border-color: var(--text-primary);
        }

        .btn-primary:hover {
            background: var(--text-secondary);
            border-color: var(--text-secondary);
        }

        .btn-large {
            padding: 12px 24px;
            font-size: 16px;
            border-radius: 12px;
        }

        /* ========== Hero Section - Framer Style ========== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 120px 0 80px;
            position: relative;
            background: var(--gradient-hero);
        }

        .hero-content {
            max-width: 900px;
            z-index: 2;
            position: relative;
        }

        .hero-title {
            font-size: clamp(48px, 8vw, 96px);
            font-weight: 600;
            line-height: 0.9;
            margin-bottom: 24px;
            letter-spacing: -0.04em;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 80px;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
        }

        .email-input {
            min-width: 300px;
            padding: 12px 16px;
            border: 1px solid var(--border-medium);
            border-radius: 8px;
            background: var(--bg-glass);
            color: var(--text-primary);
            font-size: 14px;
            backdrop-filter: blur(20px);
            transition: all 0.2s ease;
        }

        .email-input::placeholder {
            color: var(--text-muted);
        }

        .email-input:focus {
            outline: none;
            border-color: var(--text-primary);
            background: var(--bg-glass-hover);
        }

        .hero-preview {
            opacity: 0;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
        }

        .preview-window {
            background: var(--bg-secondary);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            backdrop-filter: blur(20px);
            max-width: 1000px;
            width: 1000px;
            margin: 0 auto;
            z-index: 999;
        }

        .preview-header {
            background: var(--bg-tertiary);
            padding: 12px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-subtle);
        }

        .preview-dots {
            display: flex;
            gap: 6px;
        }

        .preview-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--text-disabled);
        }

        .preview-dots span:nth-child(1) { background: #ff5f57; }
        .preview-dots span:nth-child(2) { background: #ffbd2e; }
        .preview-dots span:nth-child(3) { background: #28ca42; }

        .preview-title {
            font-size: 12px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .preview-content {
            display: flex;
            height: 500px;
        }

        .preview-sidebar {
            width: 240px;
            background: var(--bg-tertiary);
            border-right: 1px solid var(--border-subtle);
            display: flex;
        }

        .preview-servers {
            width: 60px;
            background: var(--bg-secondary);
            padding: 12px 8px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            align-items: center;
            border-right: 1px solid var(--border-subtle);
        }

        .server-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .server-icon:hover,
        .server-icon.active {
            border-radius: 12px;
        }

        .preview-channels {
            flex: 1;
            padding: 16px 12px;
        }

        .channel-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 8px;
            border-radius: 4px;
            color: var(--text-secondary);
            font-size: 13px;
            margin-bottom: 2px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .channel-item:hover {
            background: var(--bg-glass);
            color: var(--text-primary);
        }

        .channel-item i {
            width: 12px;
            font-size: 10px;
        }

        .preview-chat {
            flex: 1;
            padding: 16px;
            background: var(--bg-primary);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .chat-message {
            display: flex;
            gap: 10px;
            animation: messageSlide 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .message-avatar {
            width: 32px;
            height: 32px;
            background: var(--gradient-primary);
            border-radius: 50%;
            flex-shrink: 0;
        }

        .message-content {
            flex: 1;
        }

        .message-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 2px;
        }

        .username {
            font-weight: 600;
            font-size: 13px;
            color: var(--text-primary);
        }

        .timestamp {
            font-size: 11px;
            color: var(--text-muted);
        }

        .message-text {
            font-size: 13px;
            text-align: left;
            color: var(--text-secondary);
        }

        .stats {
            padding: 80px 0;
            z-index: 1000;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 8px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-item p {
            color: var(--text-secondary);
            font-size: 16px;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .feature-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(20px);
        }

        .feature-card:hover {
            background: var(--bg-glass-hover);
            border-color: var(--border-medium);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 20px;
            color: white;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .feature-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.5;
        }

        /* ========== Product Showcase ========== */
        .showcase {
            padding: 120px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }

        .showcase-content h3 {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .showcase-content p {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .showcase-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .showcase-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .showcase-features li i {
            color: var(--accent-green);
            font-size: 16px;
        }

        .showcase-image {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 24px;
            backdrop-filter: blur(20px);
        }

        .showcase-mockup {
            width: 100%;
            height: 300px;
            background: var(--gradient-secondary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* ========== Testimonials ========== */
        .testimonials {
            padding: 120px 0;
        }

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

        .testimonial-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 24px;
            backdrop-filter: blur(20px);
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
        }

        .author-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .author-info p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ========== Pricing ========== */
        .pricing {
            padding: 120px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 32px 24px;
            text-align: center;
            backdrop-filter: blur(20px);
            position: relative;
        }

        .pricing-card.featured {
            border-color: var(--accent-blue);
            background: var(--gradient-secondary);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .pricing-price {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .pricing-period {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 24px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
            text-align: left;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .pricing-features li i {
            color: var(--accent-green);
            font-size: 16px;
        }

        /* ========== Founders ========== */
        .founders {
            padding: 120px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-subtle);
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        .founder-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            backdrop-filter: blur(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .founder-card:hover::before {
            opacity: 1;
        }

        .founder-avatar {
            width: 120px;
            height: 120px;
            margin: 0 auto 24px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid var(--border-subtle);
            background: var(--bg-secondary);
            position: relative;
        }

        .founder-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .founder-card:hover .founder-avatar img {
            transform: scale(1.05);
        }

        .founder-info h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .founder-role {
            font-size: 16px;
            color: var(--accent-blue);
            font-weight: 500;
            margin-bottom: 16px;
        }

        .founder-bio {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 24px;
            font-size: 14px;
        }

        .founder-social {
            display: flex;
            justify-content: center;
            gap: 16px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-secondary);
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-subtle);
        }

        .social-link:hover {
            background: var(--accent-blue);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .social-link i {
            font-size: 16px;
        }

        /* ========== FAQ ========== */
        .faq {
            padding: 120px 0;
        }

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

        .faq-item {
            border-bottom: 1px solid var(--border-subtle);
            margin-bottom: 24px;
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 18px;
            font-weight: 600;
            padding: 24px 0;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-question i {
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-question:hover {
            color: var(--accent-blue);
        }

        .faq-answer {
            padding-bottom: 24px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            padding-top: 0;
            padding-bottom: 0;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            opacity: 1;
            padding-top: 0;
            padding-bottom: 24px;
        }

        /* ========== CTA Section ========== */
        .cta {
            padding: 120px 0;
            text-align: center;
            background: var(--gradient-hero);
        }

        .cta-content {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            padding: 80px 40px;
            backdrop-filter: blur(20px);
            max-width: 800px;
            margin: 0 auto;
           
        }

        .cta-content h2 {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .cta-content p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        /* ========== Footer ========== */
        .footer {
            padding: 80px 0 40px;
            border-top: 1px solid var(--border-subtle);
            background: var(--bg-secondary);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-section h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

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

        .footer-section ul li {
            margin-bottom: 8px;
        }

        .footer-section ul li a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s ease;
        }

        .footer-section ul li a:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        /* ========== Modals ========== */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-content {
            background: var(--bg-secondary);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            width: 90%;
            max-width: 400px;
            box-shadow: var(--shadow-xl);
            animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .modal-header h3 {
            font-size: 16px;
            font-weight: 600;
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 18px;
            cursor: pointer;
            padding: 4px;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: var(--bg-glass);
            color: var(--text-primary);
        }

        .modal-body {
            padding: 20px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: var(--text-primary);
            font-size: 14px;
        }

        .form-group input {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid var(--border-medium);
            border-radius: 6px;
            background: var(--bg-glass);
            color: var(--text-primary);
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--text-primary);
            background: var(--bg-glass-hover);
        }

        .modal-footer {
            text-align: center;
            margin-top: 16px;
        }

        .modal-footer a {
            color: var(--accent-blue);
            text-decoration: none;
            font-size: 14px;
        }

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

        /* ========== Chatbot ========== */
        .chatbot {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1500;
        }

        .chatbot-button {
            width: 56px;
            height: 56px;
            background: var(--accent-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-medium);
        }

        .chatbot-button:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .chatbot-button img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
        }

        .chatbot-window {
            position: absolute;
            bottom: 70px;
            right: 0;
            width: 360px;
            height: 500px;
            background: var(--bg-secondary);
            border: 1px solid var(--border-medium);
            border-radius: 12px;
            box-shadow: var(--shadow-xl);
            display: none;
            flex-direction: column;
            backdrop-filter: blur(20px);
            animation: chatbotSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .chatbot-window.show {
            display: flex;
        }

        .chatbot-header {
            background: var(--bg-tertiary);
            padding: 16px;
            border-radius: 12px 12px 0 0;
            border-bottom: 1px solid var(--border-subtle);
        }

        .chatbot-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 14px;
        }

        .chatbot-messages {
            flex: 1;
            padding: 16px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .chatbot-message {
            display: flex;
            gap: 8px;
            animation: messageSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .chatbot-message.user-message {
            flex-direction: row-reverse;
        }

        .message-avatar1 {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .message-avatar1 img {
            width: 24px;
            height: 24px;
            border-radius: 50%;
        }

        .chatbot-message .message-content {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            padding: 8px 12px;
            border-radius: 8px;
            max-width: 80%;
            font-size: 13px;
            line-height: 1.4;
        }

        .user-message .message-content {
            background: var(--text-primary);
            border-color: var(--text-primary);
            color: var(--bg-primary);
        }

        .chatbot-quick-questions {
            padding: 16px;
            border-top: 1px solid var(--border-subtle);
        }

        .chatbot-quick-questions p {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .quick-question {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            padding: 6px 8px;
            border-radius: 6px;
            margin-bottom: 4px;
            cursor: pointer;
            font-size: 11px;
            transition: all 0.2s ease;
        }

        .quick-question:hover {
            background: var(--bg-glass-hover);
            border-color: var(--border-medium);
        }

        .chatbot-input {
            padding: 16px;
            border-top: 1px solid var(--border-subtle);
            display: flex;
            gap: 8px;
        }

        .chatbot-input input {
            flex: 1;
            padding: 8px 12px;
            border: 1px solid var(--border-medium);
            border-radius: 6px;
            background: var(--bg-glass);
            color: var(--text-primary);
            font-size: 13px;
        }

        .chatbot-input input:focus {
            outline: none;
            border-color: var(--text-primary);
        }

        .chatbot-input button {
            background: var(--text-primary);
            border: none;
            color: var(--bg-primary);
            padding: 8px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .chatbot-input button:hover {
            background: var(--text-secondary);
        }

        /* ========== Prototype Warnings ========== */
        .prototype-warning {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
            padding: 8px 12px;
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
            border: 1px solid rgba(255, 193, 7, 0.3);
            border-radius: 8px;
            font-size: 12px;
            color: #ff8f00;
            font-weight: 500;
        }

        .prototype-warning i {
            font-size: 14px;
            color: #ff8f00;
        }

        .prototype-notice {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            padding: 12px 16px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            font-size: 13px;
            color: var(--accent-blue);
            font-weight: 500;
        }

        .prototype-notice i {
            font-size: 16px;
            color: var(--accent-blue);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes messageSlide {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes modalFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes modalSlideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes chatbotSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* ========== Responsive Design ========== */
        @media (min-width: 320px) {
            .container, .container-wide {
                padding: 0 16px;
            }
            
            .hero-title {
                font-size: clamp(32px, 8vw, 48px);
                line-height: 1.1;
            }
            
            .hero-description {
                font-size: 16px;
                padding: 0 8px;
            }
            
            .hero-actions {
                flex-direction: column;
                gap: 16px;
                padding: 0 16px;
            }
            
            .email-input {
                width: 100%;
                min-width: auto;
                max-width: 320px;
            }
            
            .preview-window {
                width: 100%;
                max-width: 100%;
                margin: 0 8px;
            }
            
            .preview-content {
                flex-direction: column;
                height: auto;
                min-height: 400px;
            }
            
            .preview-sidebar {
                width: 100%;
                height: auto;
                min-height: 120px;
                border-right: none;
                border-bottom: 1px solid var(--border-subtle);
            }
           
            
            .preview-channels {
                padding: 12px;
            }
            
            .preview-chat {
                padding: 12px;
                min-height: 200px;
            }
            
            .nav-menu {
                display: none;
            }
            
            .nav-actions {
                gap: 8px;
            }
            
            .btn {
                padding: 10px 16px;
                font-size: 14px;
            }
            
            .btn-large {
                padding: 14px 20px;
                font-size: 16px;
            }
            
            .section-header h2 {
                font-size: clamp(28px, 6vw, 48px);
            }
            
            .section-header p {
                font-size: 16px;
                padding: 0 16px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 8px;
            }
            
            .feature-card {
                padding: 24px 20px;
            }
            
            .showcase-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-bottom: 80px;
            }
            
            .showcase-content h3 {
                font-size: clamp(24px, 5vw, 36px);
            }
            
            .showcase-content p {
                font-size: 15px;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 8px;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 8px;
            }
            
            .pricing-card {
                padding: 24px 20px;
            }
            
            .founders-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 0 8px;
            }
            
            .founder-card {
                padding: 24px 20px;
            }
            
            .founder-avatar {
                width: 100px;
                height: 100px;
            }
            
            .founder-info h3 {
                font-size: 20px;
            }
            
            .faq-question {
                font-size: 16px;
                padding: 20px 0;
            }
            
            .cta-content {
                padding: 60px 24px;
                margin: 0 16px;
            }
            
            .cta-content h2 {
                font-size: clamp(28px, 6vw, 40px);
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
            
            .chatbot {
                bottom: 16px;
                right: 16px;
            }
          
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                padding: 0 16px;
            }
            
            .stat-item h3 {
                font-size: clamp(32px, 8vw, 48px);
            }
            
            .stat-item p {
                font-size: 14px;
            }
        }
        
        /* Small Devices (tablets, 768px and up) */
        @media (min-width: 768px) {
            .container, .container-wide {
                padding: 0 32px;
            }
            
            .hero-title {
                font-size: clamp(48px, 8vw, 72px);
            }
            
            .hero-actions {
                flex-direction: row;
                gap: 16px;
                padding: 0;
            }
            
            .email-input {
                min-width: 280px;
            }
            
            .preview-window {
                width: 90%;
                max-width: 800px;
            }
            
            .preview-content {
                flex-direction: row;
                height: 500px;
            }
            
            .preview-sidebar {
                width: 240px;
                height: 100%;
                border-right: 1px solid var(--border-subtle);
                border-bottom: none;
            }
            
            .preview-servers {
                width: 60px;
                flex-direction: column;
                border-right: 1px solid var(--border-subtle);
                border-bottom: none;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                padding: 0;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                padding: 0;
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                padding: 0;
            }
            
            .founders-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
                padding: 0;
            }
            
            .showcase-grid {
                grid-template-columns: 1fr 1fr;
                gap: 60px;
            }
            
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr;
                gap: 40px;
                text-align: left;
            }
            
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 40px;
                padding: 0;
            }
            
            .cta-content {
                padding: 80px 40px;
                margin: 0;
            }
        }
        
        /* Medium Devices (desktops, 1024px and up) */
        @media (min-width: 1024px) {
            .container {
                max-width: 1200px;
                padding: 0 40px;
            }
            
            .container-wide {
                max-width: 1400px;
                padding: 0 40px;
            }
            
            .hero-title {
                font-size: clamp(72px, 8vw, 96px);
            }
            
            .preview-window {
                width: 1000px;
                max-width: 100%;
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
            
            .pricing-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px;
            }
            
            .founders-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                max-width: 1000px;
            }
            
            .footer-content {
                grid-template-columns: 2fr 1fr 1fr 1fr;
                gap: 60px;
            }
            
            .nav-menu {
                display: flex;
            }
            
            .nav-actions {
                gap: 12px;
            }
        }
        
        /* Large Devices (large desktops, 1440px and up) */
        @media (min-width: 1440px) {
            .container {
                max-width: 1400px;
                padding: 0 60px;
            }
            
            .container-wide {
                max-width: 1600px;
                padding: 0 60px;
            }
            
            .hero-title {
                font-size: 96px;
            }
            
            .preview-window {
                width: 1200px;
            }
            
            .features-grid {
                gap: 40px;
            }
            
            .testimonials-grid {
                gap: 40px;
            }
            
            .pricing-grid {
                gap: 40px;
            }
            
            .founders-grid {
                gap: 48px;
                max-width: 1200px;
            }
        }
        
        /* Extra Large Devices (4K displays, 2560px and up) */
        @media (min-width: 2560px) {
            .container {
                max-width: 1800px;
                padding: 0 80px;
            }
            
            .container-wide {
                max-width: 2000px;
                padding: 0 80px;
            }
            
            .hero-title {
                font-size: 120px;
            }
            
            .preview-window {
                width: 1400px;
            }
        }
        
        /* Landscape Orientation for Mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: 80vh;
                padding: 80px 0 60px;
            }
            
            .hero-actions {
                flex-direction: row;
                gap: 12px;
            }
            
            .email-input {
                min-width: 200px;
            }
            
            .preview-content {
                height: 300px;
            }
            
            .preview-sidebar {
                height: 80px;
            }
            
            .preview-servers {
                height: 80px;
            }
        }
        
        /* High DPI Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .logo img,
            .chatbot-button img,
            .message-avatar1 img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }
        
        /* Reduced Motion for Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }
        
        /* Dark Mode Support */
        @media (prefers-color-scheme: dark) {
            :root {
                --bg-primary: #000000;
                --bg-secondary: #0a0a0a;
                --bg-tertiary: #111111;
                --bg-card: #0f0f0f;
                --bg-glass: rgba(255, 255, 255, 0.02);
                --bg-glass-hover: rgba(255, 255, 255, 0.04);
                --border-subtle: rgba(255, 255, 255, 0.06);
                --border-medium: rgba(255, 255, 255, 0.1);
                --border-strong: rgba(255, 255, 255, 0.15);
                --text-primary: #ffffff;
                --text-secondary: rgba(255, 255, 255, 0.7);
                --text-muted: rgba(255, 255, 255, 0.4);
                --text-disabled: rgba(255, 255, 255, 0.2);
            }
        }
        
        /* Light Mode Support */
        @media (prefers-color-scheme: light) {
            :root {
                --bg-primary: #ffffff;
                --bg-secondary: #f8f9fa;
                --bg-tertiary: #e9ecef;
                --bg-card: #ffffff;
                --bg-glass: rgba(0, 0, 0, 0.02);
                --bg-glass-hover: rgba(0, 0, 0, 0.04);
                --border-subtle: rgba(0, 0, 0, 0.06);
                --border-medium: rgba(0, 0, 0, 0.1);
                --border-strong: rgba(0, 0, 0, 0.15);
                --text-primary: #000000;
                --text-secondary: rgba(0, 0, 0, 0.7);
                --text-muted: rgba(0, 0, 0, 0.4);
                --text-disabled: rgba(0, 0, 0, 0.2);
            }
        }
        
        /* Print Styles */
        @media print {
            .header,
            .chatbot,
            .nav-actions,
            .hero-actions,
            .cta,
            .footer {
                display: none !important;
            }
            
            .hero {
                min-height: auto;
                padding: 40px 0;
            }
            
            .preview-window {
                display: none !important;
            }
            
            * {
                background: white !important;
                color: black !important;
                box-shadow: none !important;
            }
        }
        
        /* Focus Styles for Accessibility */
        @media (prefers-reduced-motion: no-preference) {
            .btn:focus,
        
            .email-input:focus,
            .chatbot-input input:focus {
                outline: 2px solid var(--accent-blue);
                outline-offset: 2px;
            }
        }
        
        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {
            .btn {
                min-height: 44px;
                padding: 12px 20px;
            }
            
            .nav-menu a {
                padding: 12px 0;
            }
            
            .faq-question {
                padding: 16px 0;
            }
            
            .channel-item {
                padding: 12px 8px;
            }
            
            .quick-question {
                padding: 12px 8px;
            }
        }
        
   
        @media (hover: hover) and (pointer: fine) {
            .btn:hover {
                transform: translateY(-1px);
            }
            
            .feature-card:hover {
                transform: translateY(-4px);
            }
            
            .pricing-card:hover {
                transform: translateY(-2px);
            }
            
            .testimonial-card:hover {
                transform: translateY(-2px);
            }
        }
        
        /* ========== Scrollbar Styling ========== */
        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-secondary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--border-medium);
            border-radius: 2px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--border-strong);
        }

        /* Dikey Launch Card */
.launch-card {
  width: 92%;
  max-width: 400px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 28px 24px;
  color: var(--text-primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  text-align: center;
}

.launch-card h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.launch-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.launch-card .prototype-notice {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  align-items: center;
}

/* E-posta input modern */
.launch-card .notify-area-vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.launch-card .notify-area-vertical input {
  text-align: center;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  transition: all 0.25s ease;
}

.launch-card .notify-area-vertical input:focus {
  border-color: var(--border-medium);
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-subtle);
  transition: .3s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-primary);
  transition: .3s;
  border-radius: 50%;
}


#launchCard.modal {
  display: none;
}

#launchCard.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Modal container için başlangıç gizleme */
#launchCard.modal {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: fixed; /* modal için */
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#launchCard.modal.show {
  display: flex;
  opacity: 1;
}

/* Launch Card container */
.launch-card {
  width: 92%;
  max-width: 400px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 48px 24px 28px; /* üst padding artırıldı logo için */
  color: var(--text-primary);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  text-align: center;
  overflow: visible;
}

/* Logo için yer */
.launch-card .logo-container {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.launch-card .logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Kapatma butonu iyileştirmesi */
/* Kapatma butonu sağ üst köşe */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;  /* sağ üst köşe */
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 20;
}

.modal-close:hover {
  color: var(--border-medium); /* mavi tonunda veya istediğin renk */
}

/* Toggle switch aktifse butonun rengi mavi olsun */
.notify-area-vertical button.btn-primary {
  background-color: var(--border-subtle);
  transition: background-color 0.3s ease;
  border: none;
  padding: 10px;
  border-radius: 6px;
  color: var(--text-primary);
  cursor: pointer;
}

.notify-area-vertical button.btn-primary.active {
  background-color: #6366f1; /* mavi (indigo-500 gibi) */
  color: white;
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}
.toggle-label {
  font-size: 14px;
  color: var(--text-muted);
  user-select: none;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.3s ease;
  line-height: 1.3;
  padding-left: 6px;
}

.toggle-label:hover {
  color: var(--border-medium);
}

