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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background: #000000;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Particle field */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    animation: fadeInParticles 3s ease-out 0.5s forwards;
}

.particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(147, 112, 219, 0.15);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

        /* Glow layers */
        .glow-container {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 400px;
            height: 400px;
            margin-left: -200px;
            margin-top: -200px;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0;
            transform: scale(0);
            will-change: transform;
        }

        .glow-1 {
            background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(75, 0, 130, 0.2) 50%, transparent 70%);
            animation:
                magicGlowAppear 2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
                heartbeat 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) 2s infinite;
        }

        .glow-2 {
            background: radial-gradient(circle, rgba(147, 112, 219, 0.3) 0%, rgba(138, 43, 226, 0.15) 50%, transparent 70%);
            animation:
                magicGlowAppear 2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards,
                heartbeat 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) 2.15s infinite;
            filter: blur(140px);
        }

        .glow-3 {
            background: radial-gradient(circle, rgba(123, 104, 238, 0.25) 0%, rgba(106, 90, 205, 0.1) 50%, transparent 70%);
            animation:
                magicGlowAppear 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards,
                heartbeat 4s cubic-bezier(0.45, 0.05, 0.55, 0.95) 2.3s infinite;
            filter: blur(160px);
        }

        /* Browser wireframe */
        .browser-wireframe {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) perspective(1000px) rotateX(2deg);
            width: 900px;
            height: 600px;
            border: 1px solid rgba(147, 112, 219, 0.2);
            border-radius: 12px;
            opacity: 0;
            animation:
                fadeInBrowser 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards,
                browserFloat 8s ease-in-out 3.3s infinite;
            pointer-events: none;
            box-shadow:
                0 0 60px rgba(147, 112, 219, 0.1),
                inset 0 1px 0 rgba(147, 112, 219, 0.1);
        }

        .browser-header {
            height: 40px;
            border-bottom: 1px solid rgba(147, 112, 219, 0.15);
            display: flex;
            align-items: center;
            padding: 0 16px;
            gap: 8px;
            background: rgba(147, 112, 219, 0.02);
        }

        .browser-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(147, 112, 219, 0.25);
            opacity: 0;
            animation: dotAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .browser-dot:nth-child(1) {
            animation-delay: 2.1s;
        }

        .browser-dot:nth-child(2) {
            animation-delay: 2.2s;
        }

        .browser-dot:nth-child(3) {
            animation-delay: 2.3s;
        }

        .browser-address-bar {
            flex: 1;
            height: 24px;
            margin-left: 12px;
            border: 1px solid rgba(147, 112, 219, 0.15);
            border-radius: 6px;
            background: rgba(147, 112, 219, 0.04);
            opacity: 0;
            animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0 8px;
        }

        .browser-address-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(147, 112, 219, 0.2), transparent);
            animation: shimmer 3s ease-in-out 3.5s infinite;
        }

        .ai-badge {
            position: relative;
            z-index: 1;
            font-size: 9px;
            font-weight: 700;
            color: rgba(147, 112, 219, 1);
            background: rgba(147, 112, 219, 0.15);
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 4px;
            padding: 2px 6px;
            letter-spacing: 0.5px;
            opacity: 0;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 3.5s forwards;
        }

        .browser-body {
            display: flex;
            height: calc(100% - 40px);
        }

        .browser-sidebar {
            width: 80px;
            border-right: 1px solid rgba(147, 112, 219, 0.12);
            background: rgba(147, 112, 219, 0.02);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 12px 8px;
            gap: 16px;
            opacity: 0;
            animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards;
        }

        .tab-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            width: 100%;
        }

        .group-label {
            font-size: 8px;
            font-weight: 600;
            color: rgba(147, 112, 219, 0.6);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 3.2s forwards;
        }

        .sidebar-icon {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(147, 112, 219, 0.1);
            border: 1px solid rgba(147, 112, 219, 0.15);
            opacity: 0;
            animation: iconPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            position: relative;
            overflow: hidden;
        }

        .sidebar-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 12px;
            height: 12px;
            transform: translate(-50%, -50%);
            background: rgba(147, 112, 219, 0.3);
            border-radius: 2px;
        }

        .sidebar-icon:nth-child(1) {
            animation-delay: 2.5s;
        }

        .sidebar-icon:nth-child(2) {
            animation-delay: 2.65s;
        }

        .sidebar-icon:nth-child(3) {
            animation-delay: 2.8s;
        }

        .sidebar-icon.active {
            background: rgba(147, 112, 219, 0.2);
            box-shadow: 0 0 20px rgba(147, 112, 219, 0.3);
        }

        .sidebar-icon.active::before {
            background: rgba(147, 112, 219, 0.6);
            animation: pulse-icon 2s ease-in-out infinite;
        }

        .browser-content {
            flex: 1;
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
        }

        .content-header {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ai-suggestion {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            background: rgba(147, 112, 219, 0.08);
            border: 1px solid rgba(147, 112, 219, 0.2);
            border-radius: 8px;
            opacity: 0;
            animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 3.8s forwards;
            width: 200px;
        }

        .ai-icon {
            font-size: 14px;
            line-height: 1;
        }

        .suggestion-text {
            flex: 1;
            height: 6px;
            background: rgba(147, 112, 219, 0.15);
            border-radius: 3px;
        }

        .browser-line {
            height: 8px;
            background: rgba(147, 112, 219, 0.12);
            border-radius: 4px;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLine 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            position: relative;
            overflow: hidden;
        }

        .browser-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(147, 112, 219, 0.3), transparent);
            animation: shimmer 4s ease-in-out infinite;
        }

        .browser-line:nth-child(1) {
            animation-delay: 2.6s;
        }

        .browser-line:nth-child(1)::after {
            animation-delay: 3.8s;
        }

        .browser-line:nth-child(2) {
            animation-delay: 2.8s;
        }

        .browser-line:nth-child(2)::after {
            animation-delay: 4s;
        }

        .browser-line:nth-child(3) {
            animation-delay: 3s;
        }

        .browser-line:nth-child(3)::after {
            animation-delay: 4.2s;
        }

        .browser-line:nth-child(4) {
            animation-delay: 3.2s;
        }

        .browser-line:nth-child(4)::after {
            animation-delay: 4.4s;
        }

        .browser-line:nth-child(5) {
            animation-delay: 3.4s;
        }

        .browser-line:nth-child(5)::after {
            animation-delay: 4.6s;
        }

        .browser-line.short {
            width: 60%;
        }

        .browser-line.medium {
            width: 80%;
        }

        .browser-line.long {
            width: 100%;
        }





        /* Logo */
        .logo {
            position: fixed;
            top: 30px;
            left: 40px;
            z-index: 100;
            font-size: 22px;
            font-weight: 400;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            letter-spacing: -0.5px;
            color: #ffffff;
            opacity: 0;
            animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
        }

        .logo span {
            background: linear-gradient(135deg, #ffffff 0%, rgba(147, 112, 219, 1) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Waitlist Section */
        .waitlist-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            margin-top: 32px;
            opacity: 0;
            animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
            position: relative;
            z-index: 200;
        }

        .waitlist-form {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .waitlist-count {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(52, 211, 153, 1);
            letter-spacing: -0.3px;
            padding: 10px 18px;
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgb(52 211 153 / 76%);
            border-radius: 50px;
            backdrop-filter: blur(20px);
            min-width: 100px;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            /* border: unset; */
            background: unset;
            /* background: unset; */
        }

        .waitlist-count svg {
            width: 13px;
            height: 13px;
        }

        .waitlist-count svg path {
            fill: #34d399;
        }

        .email-input-wrapper {
            display: flex;
            align-items: center;
            gap: 0;
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            backdrop-filter: blur(20px);
            padding: 4px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .email-input-wrapper:focus-within {
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
        }

        .email-input-wrapper.error {
            border-color: rgba(239, 68, 68, 0.8);
            box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
            animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
        }

        .waitlist-input {
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 15px;
            font-weight: 400;
            padding: 8px 16px;
            width: 280px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
        }

        .waitlist-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .waitlist-button {
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.9), rgba(138, 43, 226, 0.9));
            border: none;
            border-radius: 50px;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            color: #ffffff;
            margin-right: 2px;
        }

        .waitlist-button:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(147, 112, 219, 0.4);
        }

        .waitlist-button:active {
            transform: scale(0.95);
        }

        .waitlist-button.success {
            background: linear-gradient(135deg, rgba(52, 211, 153, 0.9), rgba(16, 185, 129, 0.9));
        }

        .content .launch-date {
            font-size: 14px;
            font-weight: 700;
            opacity: 1;
            color: rgba(52, 211, 153, 1);
            letter-spacing: 0.02em;
            margin: 0;
            white-space: nowrap;
            margin-top: 7px!important;
        }

        @keyframes upvoteSuccess {
            0% {
                transform: scale(1) rotate(0deg);
            }
            50% {
                transform: scale(1.3) rotate(10deg);
            }
            100% {
                transform: scale(1) rotate(0deg);
            }
        }

        @keyframes countUp {
            0% {
                transform: translateY(0px);
                opacity: 1;
            }
            50% {
                transform: translateY(-10px);
                opacity: 0;
            }
            51% {
                transform: translateY(10px);
                opacity: 0;
            }
            100% {
                transform: translateY(0px);
                opacity: 1;
            }
        }

        @keyframes countDown {
            0% {
                transform: translateY(0px);
                opacity: 1;
            }
            50% {
                transform: translateY(10px);
                opacity: 0;
            }
            51% {
                transform: translateY(-10px);
                opacity: 0;
            }
            100% {
                transform: translateY(0px);
                opacity: 1;
            }
        }

        @keyframes shake {
            0%, 100% {
                transform: translateX(0);
            }
            10%, 30%, 50%, 70%, 90% {
                transform: translateX(-5px);
            }
            20%, 40%, 60%, 80% {
                transform: translateX(5px);
            }
        }



        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navigation */
        .main-nav {
            position: fixed;
            top: 30px;
            right: 40px;
            z-index: 100;
            display: flex;
            gap: 16px;
        }

        .nav-button {
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgba(147, 112, 219, 0.3);
            color: rgba(255, 255, 255, 0.9);
            padding: 10px 24px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            backdrop-filter: blur(20px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
        }

        .nav-button:hover {
            background: rgba(147, 112, 219, 0.2);
            border-color: rgba(147, 112, 219, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(147, 112, 219, 0.3);
        }

        /* Content */
        .content {
            position: relative;
            z-index: 10;
            text-align: center;
            opacity: 0;
            animation: fadeInContent 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
            pointer-events: auto;
            transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        h1 {
            font-size: clamp(3rem, 10vw, 6rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 0 40px rgba(147, 112, 219, 0.3));
            text-transform: capitalize;
        }

        p {
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 400;
            letter-spacing: 0.01em;
            opacity: 0.5;
            line-height: 1.6;
        }

        .tagline {
            margin-bottom: 0.5rem;
        }

        .feature-tagline {
            font-size: clamp(0.9rem, 1.8vw, 1.2rem);
            font-weight: 500;
            opacity: 0.7;
            color: rgba(147, 112, 219, 0.9);
            margin-top: 1rem;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }

        /* Animations */
        @keyframes magicGlowAppear {
            0% {
                transform: scale(0.1);
                opacity: 0;
                filter: blur(200px) brightness(2);
            }
            40% {
                transform: scale(0.6);
                opacity: 0.6;
                filter: blur(150px) brightness(1.8);
            }
            70% {
                transform: scale(1.1);
                opacity: 0.9;
                filter: blur(120px) brightness(1.3);
            }
            100% {
                transform: scale(1);
                opacity: 1;
                filter: blur(120px) brightness(1);
            }
        }

        @keyframes starAppear {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

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

        @keyframes fadeInParticles {
            to { opacity: 1; }
        }

        @keyframes fadeInBrowser {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) perspective(1000px) rotateX(8deg) scale(0.92);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) perspective(1000px) rotateX(2deg) scale(1);
            }
        }

        @keyframes browserFloat {
            0%, 100% {
                transform: translate(-50%, -50%) perspective(1000px) rotateX(2deg) translateY(0);
            }
            50% {
                transform: translate(-50%, -50%) perspective(1000px) rotateX(2deg) translateY(-10px);
            }
        }

        @keyframes dotAppear {
            from {
                opacity: 0;
                transform: scale(0);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

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

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

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

        @keyframes iconPop {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes pulse-icon {
            0%, 100% {
                opacity: 0.6;
            }
            50% {
                opacity: 1;
            }
        }

        @keyframes pulse-dot {
            0%, 100% {
                opacity: 0.8;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        @keyframes chipAppear {
            from {
                opacity: 0;
                transform: translateY(-10px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

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

        /* Cursor Trail Effect */
        .cursor-trail {
            position: fixed;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .cursor-trail::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: radial-gradient(
                circle at center,
                rgba(147, 112, 219, 0.15) 0%,
                rgba(147, 112, 219, 0.08) 30%,
                rgba(147, 112, 219, 0.03) 60%,
                transparent 100%
            );
            filter: blur(40px);
            animation: cursorPulse 2s ease-in-out infinite;
        }

        .cursor-trail::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 60%;
            border-radius: 50%;
            background: radial-gradient(
                circle at center,
                rgba(147, 112, 219, 0.25) 0%,
                rgba(147, 112, 219, 0.1) 50%,
                transparent 100%
            );
            filter: blur(20px);
            animation: cursorPulse 2s ease-in-out infinite reverse;
        }

        @keyframes cursorPulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.8;
            }
        }



        @keyframes heartbeat {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            14% {
                transform: scale(1.08);
                opacity: 1;
            }
            28% {
                transform: scale(1);
                opacity: 0.95;
            }
            42% {
                transform: scale(1.12);
                opacity: 1;
            }
            70% {
                transform: scale(1);
                opacity: 0.95;
            }
            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(10px, -10px); }
            50% { transform: translate(-5px, -20px); }
            75% { transform: translate(-10px, -10px); }
        }

        /* Floating Wireframe Cards */
        .wireframe-cards {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 350;
        }

        .wireframe-card {
            position: absolute;
            background: rgba(20, 20, 30, 1);
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 12px;
            padding: 16px;
            backdrop-filter: blur(10px);
            box-shadow:
                0 8px 32px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(147, 112, 219, 0.2),
                inset 0 1px 0 rgba(147, 112, 219, 0.1);
            transform-style: preserve-3d;
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        /* Add hover states to browser elements */
        .browser-dot,
        .ai-badge,
        .tab-group,
        .browser-line {
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .browser-dot:hover {
            transform: scale(1.2);
            opacity: 1;
        }

        .ai-badge:hover {
            transform: scale(1.1);
            background: rgba(147, 112, 219, 0.25);
        }

        .tab-group:hover .sidebar-icon {
            transform: scale(1.1);
        }

        .browser-line:hover {
            background: rgba(147, 112, 219, 0.25);
        }

        /* Hint Bullets */
        .hint-bullets {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 300;
        }

        .hint-bullet {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(147, 112, 219, 0.8);
            border: 2px solid rgba(147, 112, 219, 1);
            border-radius: 50%;
            cursor: pointer;
            pointer-events: auto;
            box-shadow:
                0 0 20px rgba(147, 112, 219, 0.6),
                0 0 40px rgba(147, 112, 219, 0.3);
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hint-bullet::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: rgba(147, 112, 219, 0.4);
            border-radius: 50%;
            animation: ripple 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .hint-bullet:hover {
            transform: scale(1.3);
            background: rgba(147, 112, 219, 1);
            box-shadow:
                0 0 30px rgba(147, 112, 219, 0.8),
                0 0 60px rgba(147, 112, 219, 0.5);
        }

        /* Position each hint bullet */
        .hint-1 {
            top: 1.2%;
            left: 12.4%;
            animation-delay: 0s;
        }

        .hint-2 {
            top: 0.7%;
            right: 1.5%;
            animation-delay: 0.5s;
        }

        .hint-3 {
            top: 11%;
            left: 5.3%;
            animation-delay: 1s;
            /* width: 8px; */
            /* height: 8px; */
        }

        .hint-4 {
            top: 13.5%;
            left: 33.3%;
            animation-delay: 1.5s;
        }

        /* Pulse animation */
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        /* Ripple animation */
        @keyframes ripple {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.6;
            }
            100% {
                transform: translate(-50%, -50%) scale(3);
                opacity: 0;
            }
        }

        /* AI Chat Message Card */
        .card-chat {
            width: 280px;
            height: 160px;
            top: -16%;
            left: -2%;
        }

        .chat-bubble {
            background: rgba(147, 112, 219, 0.15);
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 16px;
            padding: 10px 14px;
            margin-bottom: 8px;
            position: relative;
        }

        .chat-line {
            height: 8px;
            background: rgba(147, 112, 219, 0.3);
            border-radius: 4px;
            margin-bottom: 6px;
        }

        .chat-line.short { width: 60%; }
        .chat-line.medium { width: 80%; }
        .chat-line.long { width: 95%; }

        .chat-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(147, 112, 219, 0.4), rgba(138, 43, 226, 0.2));
            border: 1px solid rgba(147, 112, 219, 0.4);
            position: absolute;
            bottom: 8px;
            right: 8px;
        }

        /* Article Card */
        .card-article {
            width: 260px;
            height: 180px;
            top: -10%;
            left: 19%;
        }

        .article-image {
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.2), rgba(138, 43, 226, 0.1));
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 8px;
            margin-bottom: 10px;
            position: relative;
            overflow: hidden;
        }

        .article-shimmer {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(147, 112, 219, 0.3), transparent);
            animation: shimmer 3s infinite;
        }

        .article-title {
            height: 10px;
            background: rgba(147, 112, 219, 0.4);
            border-radius: 4px;
            margin-bottom: 6px;
            width: 90%;
        }

        .article-text {
            height: 6px;
            background: rgba(147, 112, 219, 0.2);
            border-radius: 3px;
            margin-bottom: 4px;
        }

        /* Graph/Analytics Card */
        .card-graph {
            width: 240px;
            height: 170px;
            top: -8%;
            left: -7%;
        }

        .graph-bars {
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            height: 100px;
            margin-bottom: 10px;
            padding: 0 10px;
        }

        .graph-bar {
            width: 20px;
            background: linear-gradient(180deg, rgba(147, 112, 219, 0.6), rgba(138, 43, 226, 0.3));
            border-radius: 4px 4px 0 0;
            border: 1px solid rgba(147, 112, 219, 0.4);
            animation: barGrow 2s ease-out forwards;
            transform-origin: bottom;
            transform: scaleY(0);
        }

        .graph-bar:nth-child(1) { height: 40%; animation-delay: 3.2s; }
        .graph-bar:nth-child(2) { height: 70%; animation-delay: 3.4s; }
        .graph-bar:nth-child(3) { height: 55%; animation-delay: 3.6s; }
        .graph-bar:nth-child(4) { height: 85%; animation-delay: 3.8s; }
        .graph-bar:nth-child(5) { height: 60%; animation-delay: 4.0s; }

        .graph-label {
            height: 6px;
            background: rgba(147, 112, 219, 0.2);
            border-radius: 3px;
            margin-bottom: 4px;
            width: 70%;
        }

        /* Search Card */
        .card-search {
            width: 300px;
            height: 140px;
            /* top: 12.5%; */
            /* left: 23%; */
            top: -8%;
            right: -6%;
        }

        .search-bar {
            width: 100%;
            height: 40px;
            background: rgba(147, 112, 219, 0.1);
            border: 1px solid rgba(147, 112, 219, 0.4);
            border-radius: 20px;
            margin-bottom: 12px;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 16px;
        }

        .search-icon {
            width: 16px;
            height: 16px;
            border: 2px solid rgba(147, 112, 219, 0.5);
            border-radius: 50%;
            position: relative;
            margin-right: 10px;
        }

        .search-icon::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 8px;
            background: rgba(147, 112, 219, 0.5);
            bottom: -6px;
            right: -4px;
            transform: rotate(45deg);
        }

        .search-text {
            height: 8px;
            background: rgba(147, 112, 219, 0.3);
            border-radius: 4px;
            width: 60%;
        }

        .search-result {
            height: 8px;
            background: rgba(147, 112, 219, 0.2);
            border-radius: 4px;
            margin-bottom: 6px;
        }

        /* Data Flow Card */
        .card-data {
            width: 220px;
            height: 150px;
            bottom: 15%;
            left: 50%;
            transform: translateX(-50%);
        }

        .data-node-mini {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(147, 112, 219, 0.4), rgba(138, 43, 226, 0.2));
            border: 1px solid rgba(147, 112, 219, 0.4);
            position: absolute;
            box-shadow: 0 0 15px rgba(147, 112, 219, 0.3);
        }

        .data-node-mini:nth-child(1) { top: 20px; left: 20px; }
        .data-node-mini:nth-child(2) { top: 20px; right: 20px; }
        .data-node-mini:nth-child(3) { bottom: 20px; left: 50%; transform: translateX(-50%); }

        .data-connection {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, rgba(147, 112, 219, 0.3), rgba(147, 112, 219, 0.1));
        }

        /* Animations */

        @keyframes barGrow {
            to { transform: scaleY(1); }
        }

        @keyframes shimmer {
            to { left: 100%; }
        }

        /* Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000000;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modal.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Blog and Article modals have solid background */
        #blogModal,
        #articleModal {
            background: #0a0a0f;
        }

        #blogModal::before,
        #articleModal::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 20%, rgba(147, 112, 219, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Article modal appears on top of blog modal */
        #articleModal {
            z-index: 1100;
        }

        .modal-content {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            padding: 80px 40px 40px;
            transform: translateY(30px);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .back-button {
            position: fixed;
            top: 30px;
            left: 40px;
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgba(147, 112, 219, 0.3);
            color: rgba(255, 255, 255, 0.9);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            backdrop-filter: blur(20px);
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            z-index: 1001;
        }

        .back-button:hover {
            background: rgba(147, 112, 219, 0.2);
            border-color: rgba(147, 112, 219, 0.6);
            transform: translateX(-4px);
        }

        .back-button svg {
            width: 20px;
            height: 20px;
        }
.upvote-button svg {
    width: 11px;
    height: 11px;
    /* opacity: 0.6; */
}

.upvote-button svg path {
    fill: #34d399;
}
        .modal-body {
            max-width: 600px;
            margin: 0 auto;
        }

        .modal-body h2 {
            font-size: 48px;
            font-weight: 700;
            letter-spacing: -1.5px;
            margin: 2px 0 2px 0;
            background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 40px;
            padding-left: 7px;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 12px;
            padding: 14px 16px;
            font-size: 16px;
            color: #ffffff;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(20px);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(147, 112, 219, 0.8);
            box-shadow: 0 0 0 4px rgba(147, 112, 219, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.8), rgba(138, 43, 226, 0.8));
            border: 1px solid rgba(147, 112, 219, 0.4);
            color: #ffffff;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
            margin-top: 16px;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(147, 112, 219, 0.4);
        }

        .submit-button:active {
            transform: translateY(0);
        }

        .form-notice {
            margin-top: 16px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
            line-height: 1.5;
        }

        /* Success Modal */
        .success-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            max-width: 420px;
            margin: 0 auto;
        }

        .success-icon {
            margin-bottom: 20px;
            animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        .success-content h2 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .success-content p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 340px;
            margin-bottom: 28px;
            line-height: 1.5;
            font-weight: 400;
        }

        .success-content .submit-button {
            width: auto;
            min-width: 140px;
            padding: 12px 28px;
            font-size: 15px;
            font-weight: 500;
        }

        @keyframes scaleIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Blog Styles */
        .blog-body {
            max-width: 1200px;
        }

        .blog-grid {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 40px;
        }

        .blog-card {
            background: rgba(20, 20, 30, 0.6);
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 16px;
            padding: 0;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            backdrop-filter: blur(20px);
            max-width: 500px;
            width: 100%;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            border-color: rgba(147, 112, 219, 0.6);
            box-shadow: 0 16px 40px rgba(147, 112, 219, 0.3);
        }

        .blog-card-image {
            width: 100%;
            height: auto;
            min-height: 180px;
            position: relative;
            overflow: visible;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0px;
            height: 244px;
        }

        .blog-card-image .article-featured-card {
            max-width: 100%;
            margin: 0;
        }

        .blog-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin: 20px 20px 12px;
            color: #ffffff;
        }

        .blog-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 20px 16px;
        }

        .read-more {
            display: inline-block;
            font-size: 14px;
            font-weight: 500;
            color: rgba(147, 112, 219, 0.9);
            margin: 0 20px 20px;
            transition: all 0.3s ease;
        }

        .blog-card:hover .read-more {
            color: rgba(147, 112, 219, 1);
            transform: translateX(4px);
        }

        /* Article View */
        .article-body {
            max-width: 800px;
        }

        .article-body h2 {
            font-size: 56px;
            margin-bottom: 24px;
        }

        .article-body .article-meta {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 40px;
        }

        .article-image-container {
            width: 100%;
            /* max-width: 600px; */
            margin: 0 auto 40px;
            display: flex;
            justify-content: flex-start;
            display: none;
        }

        /* Article Featured Card - Always Visible */
        .article-featured-card {
            width: 100%;
            max-width: 500px;
            /* background: rgba(20, 20, 30, 0.8); */
            /* border: 1px solid rgba(147, 112, 219, 0.4); */
            border-radius: 16px;
            padding: 20px;
            backdrop-filter: blur(20px);
            /* box-shadow: 0 8px 32px rgba(147, 112, 219, 0.2); */
            opacity: 1;
            transform: scale(1);
        }

        .article-featured-card .article-image {
            width: 100%;
            height: 120px;
            background: linear-gradient(135deg, rgba(147, 112, 219, 0.3), rgba(138, 43, 226, 0.15));
            border: 1px solid rgba(147, 112, 219, 0.4);
            border-radius: 12px;
            margin-bottom: 16px;
            position: relative;
            overflow: hidden;
        }

        .article-featured-card .article-shimmer {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(147, 112, 219, 0.4), transparent);
            animation: shimmer 3s infinite;
        }

        .article-featured-card .article-title {
            height: 12px;
            background: rgba(147, 112, 219, 0.5);
            border-radius: 6px;
            margin-bottom: 10px;
            width: 90%;
        }

        .article-featured-card .article-text {
            height: 8px;
            background: rgba(147, 112, 219, 0.3);
            border-radius: 4px;
            margin-bottom: 6px;
        }

        /* Article Chat Card - Duplicate of homepage card-chat with separate classes */
        .article-chat-card {
            width: 100%;
          
            height: 100%;
        }

        .blog-card:hover .article-chat-card {
            opacity: 1;
            transform: scale(1) translateY(-10px);
            box-shadow:
                0 16px 48px rgba(0, 0, 0, 0.4),
                0 0 40px rgba(147, 112, 219, 0.5),
                inset 0 1px 0 rgba(147, 112, 219, 0.2);
        }

        .article-chat-bubble {
            background: rgba(147, 112, 219, 0.15);
            border: 1px solid rgba(147, 112, 219, 0.3);
            border-radius: 16px;
            padding: 10px 14px;
            margin-bottom: 8px;
            position: relative;
        }

        .article-chat-line {
            height: 8px;
            background: rgba(147, 112, 219, 0.3);
            border-radius: 4px;
            margin-bottom: 6px;
        }

        .article-chat-line.short { width: 60%; }
        .article-chat-line.medium { width: 80%; }
        .article-chat-line.long { width: 95%; }

        .article-chat-avatar {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(147, 112, 219, 0.4), rgba(138, 43, 226, 0.2));
            border: 1px solid rgba(147, 112, 219, 0.4);
            position: absolute;
            bottom: 8px;
            right: 8px;
        }

        .article-body .article-content {
            font-size: 18px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

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

        .article-body .article-content h3 {
            font-size: 28px;
            font-weight: 600;
            margin: 40px 0 16px;
            color: #ffffff;
        }

        /* Responsive Design */

        /* iPad and Tablet (768px - 1024px) */
        @media screen and (max-width: 1024px) {
            .content h1 {
                font-size: 48px;
                letter-spacing: -1.5px;
            }

            .content p {
                font-size: 18px;
            }

            .browser-wireframe {
                width: 700px;
                height: 480px;
            }

            .glow {
                width: 350px;
                height: 350px;
                margin-left: -175px;
                margin-top: -175px;
            }

            /* Hide wireframe cards on iPad */
            .wireframe-cards {
                display: none;
            }

            /* Hide hint bullets on iPad */
            .hint-bullets {
                display: none;
            }
        }

        /* Mobile Landscape (481px - 767px) */
        @media screen and (max-width: 767px) and (orientation: landscape) {
            .content h1 {
                font-size: 36px;
                letter-spacing: -1px;
            }

            .content p {
                font-size: 14px;
            }

            .browser-wireframe {
                width: 500px;
                height: 340px;
            }

            .browser-header {
                height: 30px;
            }

            .browser-dot {
                width: 8px;
                height: 8px;
            }

            .browser-address-bar {
                height: 18px;
            }

            .browser-sidebar {
                width: 40px;
            }

            .sidebar-icon {
                width: 24px;
                height: 24px;
            }

            .glow {
                width: 280px;
                height: 280px;
                margin-left: -140px;
                margin-top: -140px;
            }

            /* Hide wireframe cards on small landscape */
            .wireframe-cards {
                display: none;
            }

            /* Hide hint bullets on small landscape */
            .hint-bullets {
                display: none;
            }
        }

        /* Mobile Portrait (max-width: 480px) */
        @media screen and (max-width: 480px) {
            span#waitlistCount {}

.waitlist-count {
    font-size: 11px;
    padding: 8px 15px;
    min-width: unset;
}

.waitlist-count svg {
    width: 11px;
    height: 11px;
}

.waitlist-count {}

.content .launch-date {
    font-size: 11px;
}
            .blog-grid {flex-direction: column;}
            /* Logo centered at top */
            .logo {
                        left: 0px;
        transform: translateX(-50%);
        top: 20px;
        width: 100%;
        text-align: center;
            }
            .modal-body h2{
                font-size:40px
            }
        .article-body .article-meta {
            
            margin-bottom: 20px;
        }
            .article-body h2 {
            font-size: 26px;
            margin-bottom: 8px;
        }
            .article-body .article-content h3{
                font-size: 20px;
            margin-bottom: 8px;
                line-height:24px
            }
.blog-grid {flex-direction: column;}
            /* Navigation as fixed footer */
            .main-nav {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                top: auto;
                display: flex;
                justify-content: space-around;
                align-items: center;
                padding: 12px 20px;
                background: rgba(10, 10, 15, 0.95);
                backdrop-filter: blur(20px);
                border-top: 1px solid rgba(147, 112, 219, 0.2);
                z-index: 100;
            }
            .upvote-button svg{
                width:10px;
            }
            .upvote-count{
                font-size:12px;
            }

            .nav-button {
                flex: 1;
                max-width: 150px;
                padding: 12px 20px;
                font-size: 15px;
            }

            /* Content positioned 20% from top */
            .content {
                position: absolute;
                top: 20%;
                left: 0%;
                transform: translateX(-50%);
                text-align: center;
                z-index: 10;
                width: 100%;
            }

            .content h1 {
                        font-size: 32px;
        letter-spacing: -0.5px;
        line-height: 1.1;
        width: 300px;
        margin: 0 auto;

            }

            .content p {
                font-size: 14px;
                margin-top: 12px;
            }
.launch-date{
    margin-top:0px!important;
}
            /* Browser wireframe below content (not behind) */
            .browser-wireframe {
                position: absolute;
                top: calc(20% + 395px);
                left: 50%;
                transform: translateX(-50%);
                width: 320px;
                height: 220px;
                border-radius: 8px;
                z-index: 5;
            }
            .logo span{
                font-size: 26px;
            }

            .browser-header {
                height: 28px;
                padding: 8px 10px;
            }

            .browser-dot {
                width: 6px;
                height: 6px;
                margin-right: 4px;
            }

            .browser-address-bar {
                height: 16px;
                margin-left: 12px;
                border-radius: 6px;
            }

            .browser-body {
                padding: 8px;
            }

            .browser-sidebar {
                width: 35px;
                padding: 8px 6px;
            }

            .sidebar-icon {
                width: 20px;
                height: 20px;
                margin-bottom: 8px;
            }

            .browser-content {
                padding: 8px;
            }

            .browser-line {
                height: 6px;
                margin-bottom: 6px;
            }

            .browser-line.short { width: 40%; }
            .browser-line.medium { width: 60%; }
            .browser-line.long { width: 85%; }

            .glow {
                width: 250px;
                height: 250px;
                margin-left: -125px;
                margin-top: -125px;
                filter: blur(100px);
            }

            .glow-2 {
                filter: blur(120px);
            }

            .glow-3 {
                filter: blur(140px);
            }

            /* Hide wireframe cards on mobile */
            .wireframe-cards {
                display: none;
            }

            /* Hide hint bullets on mobile */
            .hint-bullets {
                display: none;
            }

            /* Reduce particle count visually */
            .particles {
                opacity: 0.3;
            }

            /* Smaller cursor trail on mobile */
            .cursor-trail {
                width: 300px;
                height: 300px;
            }
        }

        /* Small Mobile (max-width: 375px) */
        @media screen and (max-width: 375px) {
            .content h1 {
                font-size: 28px;
                        width: 240px;
        margin: 0 auto;
            }

            .content p {
                font-size: 13px;
            }

            .browser-wireframe {
                width: 280px;
                height: 200px;
                top: calc(20% + 284px);
            }

            .glow {
                width: 220px;
                height: 220px;
                margin-left: -110px;
                margin-top: -110px;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            /* Show wireframe cards on touch devices (no hover) */
            .wireframe-card {
                opacity: 0.7;
                transform: scale(0.95);
            }

            .wireframe-card:active {
                opacity: 1;
                transform: scale(1) translateY(-10px);
            }

            /* Disable cursor trail on touch devices */
            .cursor-trail {
                display: none;
            }
        }


        .modal-body.article-body .article-featured-card {
    padding: 0px;
    /* display: none; */
}


.article-chat-svg svg {
    width: 100%;
    height: 100%;
    max-width: 200px;
    max-height: 200px;
    margin: 0 auto;
    margin-top: 24px;
}

.article-chat-svg {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
}

.article-chat-svg svg path {
    fill: #53417e;
}

.waitlist-warpper {
    display: flex;
    gap: 15px;
}