@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg-main: #02040a;
    --bg-panel: rgba(15, 20, 35, 0.4);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary: #00e5ff;
    --primary-glow: rgba(0, 229, 255, 0.4);
    --secondary: #4a63e6;
    --accent-red: #ff2a55;
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.bg-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.orb-cyan {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -10%;
    left: -10%;
}

.orb-blue {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: 10%;
    right: -10%;
    animation-delay: -5s;
}

.orb-purple {
    width: 400px;
    height: 400px;
    background: #7928CA;
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 150px) scale(1.2);
    }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

header.scrolled {
    padding: 1rem 6%;
    background: rgba(2, 4, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary-glow);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 8% 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.btn-primary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-primary:hover .btn-glow {
    opacity: 0.4;
}

.icon {
    width: 24px;
    height: 24px;
}

.btn-secondary {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 1.2rem 2rem;
    transition: color 0.3s;
}

.btn-secondary:hover {
    color: var(--primary);
}

.hero-visuals {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.glass-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.float-img {
    position: absolute;
    animation: floating 6s ease-in-out infinite;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    will-change: transform;
}

.img-main {
    width: 450px;
    z-index: 2;
}

.img-sub {
    width: 480px;
    bottom: 5%;
    right: 0;
    z-index: 3;
    animation-delay: -3s;
    animation-duration: 8s;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.showcase {
    display: flex;
    align-items: center;
    padding: 8rem 8%;
    gap: 6rem;
}

.showcase.reverse {
    flex-direction: row-reverse;
}

.showcase-content {
    flex: 1;
}

.section-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    color: #e2e8f0;
}

.bullet {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 10px;
    box-shadow: 0 0 15px var(--primary);
    flex-shrink: 0;
}

.showcase-visual {
    flex: 1;
}

.glass-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.glass-panel.glow-red {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 42, 85, 0.15);
}

.glass-panel img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.bento-section {
    padding: 8rem 8%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(380px, auto);
    gap: 2rem;
}

.bento-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s;
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.col-span-2 {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
}

.bento-info {
    flex: 1;
}

.bento-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.bento-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.bento-img-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bento-card:not(.col-span-2) .bento-img-wrap {
    margin-top: 2rem;
}

.bento-img-wrap img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 0;
    box-shadow: none;
    background: transparent !important;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-img-wrap img {
    transform: scale(1.05) translateY(-5px);
}

.download-banner {
    padding: 6rem 8%;
    margin-bottom: 2rem;
}

.banner-content {
    background: linear-gradient(135deg, rgba(15, 20, 35, 0.8), rgba(2, 4, 10, 0.9));
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: ambient-pulse 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes ambient-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

.banner-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
}

.banner-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    position: relative;
}

.reqs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 3rem;
    position: relative;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.btn-primary.large {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
    position: relative;
    display: inline-flex;
    width: max-content;
    margin: 0 auto;
}

.interact-section {
    padding: 4rem 8%;
    margin-bottom: 4rem;
}

.interact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.interact-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.interact-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.interact-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.text-area {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: rgba(10, 15, 25, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 229, 255, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: transform 0.3s, opacity 0.3s;
}

.chat-widget.minimized {
    transform: translateY(calc(100% - 60px));
}

.chat-header {
    background: rgba(0, 229, 255, 0.1);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-glass);
    font-weight: 600;
    color: #fff;
    cursor: pointer;
}

.chat-header button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
}

.chat-body {
    height: 300px;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-size: 0.95rem;
    max-width: 85%;
    line-height: 1.4;
}

.admin-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #f0f4f8;
}

.user-msg {
    align-self: flex-end;
    background: var(--primary);
    color: #000;
    font-weight: 500;
}

.chat-input-area {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.3);
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.5rem;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
}

.chat-input-area button {
    background: var(--primary);
    color: #000;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

.feedback-msg {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

footer {
    padding: 4rem 8% 2rem;
    border-top: 1px solid var(--border-glass);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-brand img {
    width: 32px;
    opacity: 0.8;
}

.footer-brand span {
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.footer-content p {
    color: var(--text-muted);
}

.sub-text {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-top: 1rem;
}

.accent {
    color: var(--primary);
    font-weight: 600;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s ease-out;
}

.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

@keyframes rec-blink {
    0% {
        opacity: 0.2;
        box-shadow: 0 0 5px 2px rgba(255, 0, 0, 0.3);
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 20px 8px rgba(255, 0, 0, 0.9);
    }
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .col-span-2 {
        grid-column: span 1;
        flex-direction: column;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 12rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .showcase,
    .showcase.reverse {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .feature-list li {
        text-align: left;
    }
}