/* ============================================
   Zuqus – Premium Creative Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #030305;
    --bg-secondary: #080810;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-card-hover: rgba(255, 255, 255, 0.055);
    --border-color: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(0, 180, 255, 0.18);

    --text-primary: #eeeef5;
    --text-secondary: #8888a0;
    --text-muted: #4a4a60;

    --accent-cyan: #00d4ff;
    --accent-blue: #4d8bff;
    --accent-purple: #b366ff;
    --accent-pink: #e040fb;

    --gradient-brand: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue), var(--accent-purple));
    --gradient-glow: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(179, 102, 255, 0.12));
    --gradient-text: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    --font-mono: 'JetBrains Mono', monospace;

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* ---------- Custom Cursor ---------- */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor--hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent-purple);
    background: rgba(179, 102, 255, 0.1);
}

.cursor-dot {
    position: fixed;
    width: 5px;
    height: 5px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

/* ---------- Background Effects ---------- */
.bg-noise {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 70%);
}

.bg-radial {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.07), transparent 60%),
        radial-gradient(ellipse 50% 40% at 85% 50%, rgba(179, 102, 255, 0.04), transparent 50%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 212, 255, 0.03), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ---------- Mesh Gradient Blob ---------- */
.mesh-blob {
    position: fixed;
    width: 800px;
    height: 800px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 212, 255, 0.15), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(179, 102, 255, 0.12), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(77, 139, 255, 0.08), transparent 50%);
    filter: blur(80px);
    animation: meshFloat 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translateX(-50%) rotate(0deg) scale(1);
    }

    25% {
        transform: translateX(-45%) rotate(5deg) scale(1.05);
    }

    50% {
        transform: translateX(-55%) rotate(-3deg) scale(0.95);
    }

    75% {
        transform: translateX(-48%) rotate(2deg) scale(1.03);
    }
}

/* ---------- Floating Ring ---------- */
.ring {
    position: fixed;
    border-radius: 50%;
    border: 1px solid;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    animation: ringAppear 1s ease-out forwards;
}

.ring--1 {
    width: 500px;
    height: 500px;
    top: 10%;
    right: -150px;
    border-color: rgba(0, 212, 255, 0.06);
    animation-delay: 0.5s;
    animation-name: ringAppear, ringSpin;
    animation-duration: 1s, 60s;
    animation-timing-function: ease-out, linear;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
}

.ring--2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    left: -100px;
    border-color: rgba(179, 102, 255, 0.05);
    animation-delay: 1s;
    animation-name: ringAppear, ringSpin;
    animation-duration: 1s, 45s;
    animation-timing-function: ease-out, linear;
    animation-iteration-count: 1, infinite;
    animation-fill-mode: forwards, none;
    animation-direction: normal, reverse;
}

@keyframes ringAppear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ringSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ---------- Particles Canvas ---------- */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    background: rgba(3, 3, 5, 0.5);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.nav.scrolled {
    background: rgba(3, 3, 5, 0.85);
    padding: 14px 48px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition-spring);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo img {
    height: 38px;
    width: auto;
}

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

.nav__badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    position: relative;
    overflow: hidden;
}

.nav__badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ---------- Main Content ---------- */
.main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ---------- Hero Section ---------- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
}

/* Animated Beam Lines */
.hero__beams {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.hero__beam {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    animation: beamFall linear infinite;
}

.hero__beam:nth-child(1) {
    left: 10%;
    animation-duration: 3s;
    animation-delay: 0s;
}

.hero__beam:nth-child(2) {
    left: 25%;
    animation-duration: 4s;
    animation-delay: 1s;
}

.hero__beam:nth-child(3) {
    left: 40%;
    animation-duration: 3.5s;
    animation-delay: 2s;
}

.hero__beam:nth-child(4) {
    left: 60%;
    animation-duration: 4.5s;
    animation-delay: 0.5s;
}

.hero__beam:nth-child(5) {
    left: 75%;
    animation-duration: 3s;
    animation-delay: 1.5s;
}

.hero__beam:nth-child(6) {
    left: 90%;
    animation-duration: 5s;
    animation-delay: 3s;
}

.hero__beam:nth-child(7) {
    left: 50%;
    animation-duration: 3.8s;
    animation-delay: 2.5s;
}

.hero__beam:nth-child(8) {
    left: 33%;
    animation-duration: 4.2s;
    animation-delay: 0.8s;
}

@keyframes beamFall {
    0% {
        top: -200px;
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Chip / Tag */
.hero__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    position: relative;
    overflow: hidden;
}

.hero__chip::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.05), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

.hero__chip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent-cyan);
    position: relative;
    z-index: 1;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px var(--accent-cyan);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 20px var(--accent-cyan), 0 0 40px rgba(0, 212, 255, 0.3);
    }
}

/* Hero Title */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    opacity: 0;
    animation: heroTitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Glitch effect on hover */
.hero__title:hover .hero__title-gradient {
    animation: glitchText 0.3s ease-in-out, gradientShift 4s ease-in-out infinite;
}

@keyframes glitchText {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-1px, -1px);
    }

    80% {
        transform: translate(1px, 1px);
    }
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.9s forwards;
}

/* Terminal-style typing */
.hero__terminal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 52px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s forwards;
}

.hero__terminal-prompt {
    color: var(--accent-cyan);
}

.hero__terminal-text {
    color: var(--text-secondary);
    overflow: hidden;
    border-right: 2px solid var(--accent-cyan);
    white-space: nowrap;
    animation: typing 3.5s steps(30) 2s forwards, blink 0.7s step-end infinite;
    max-width: 0;
}

@keyframes typing {
    to {
        max-width: 300px;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Actions */
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.3s forwards;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: none;
    border: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.15),
        0 0 60px rgba(179, 102, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn--primary:hover::after {
    transform: translateX(100%);
}

.btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.3),
        0 0 80px rgba(179, 102, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn--secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-3px) scale(1.02);
}

/* ---------- Scroll Indicator ---------- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
}

.scroll-indicator__mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator__dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 22px;
        opacity: 0.3;
    }
}

.scroll-indicator__text {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---------- Divider ---------- */
.divider {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-cyan);
}

/* ---------- Section Header ---------- */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
}

.section-label--cyan {
    color: var(--accent-cyan);
}

.section-label--cyan::before {
    background: var(--accent-cyan);
}

.section-label--purple {
    color: var(--accent-purple);
}

.section-label--purple::before {
    background: var(--accent-purple);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

/* ---------- "Not a Chatbot" Section ---------- */
.not-chatbot {
    padding: 120px 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.not-chatbot__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.not-chatbot__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: left;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.not-chatbot__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: inherit;
}

/* Glow line on top */
.not-chatbot__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity var(--transition-medium), left var(--transition-medium), right var(--transition-medium);
}

.not-chatbot__card:hover {
    border-color: var(--border-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 212, 255, 0.05);
}

.not-chatbot__card:hover::before {
    opacity: 1;
}

.not-chatbot__card:hover::after {
    opacity: 1;
    left: 10%;
    right: 10%;
}

.not-chatbot__card-icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    transition: all var(--transition-medium);
}

.not-chatbot__card:hover .not-chatbot__card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.not-chatbot__card h3 {
    position: relative;
    z-index: 1;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.not-chatbot__card p {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ---------- What We Do Section ---------- */
.what-we-do {
    padding: 120px 24px;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.what-we-do__desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 56px;
}

.what-we-do__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.what-we-do__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    text-align: left;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

/* Number indicator */
.what-we-do__item::before {
    content: attr(data-index);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    opacity: 0.4;
}

.what-we-do__item:hover {
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
    transform: translateX(8px);
    box-shadow: -4px 0 20px rgba(0, 212, 255, 0.05);
}

.what-we-do__item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(179, 102, 255, 0.06);
    border: 1px solid rgba(179, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 2px;
    transition: all var(--transition-medium);
}

.what-we-do__item:hover .what-we-do__item-icon {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(179, 102, 255, 0.15);
}

.what-we-do__item h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.what-we-do__item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ---------- Marquee ---------- */
.marquee-section {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.02em;
}

.marquee-item span {
    color: var(--accent-cyan);
    font-size: 8px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ---------- Stats Section ---------- */
.stats {
    padding: 80px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 32px 20px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.stat:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.stat__number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

/* ---------- Coming Soon Section ---------- */
.coming-soon {
    padding: 140px 24px;
    text-align: center;
    position: relative;
}

.coming-soon__glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06), rgba(179, 102, 255, 0.03), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.coming-soon__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 100px;
    background: rgba(0, 212, 255, 0.04);
    border: 1px solid rgba(0, 212, 255, 0.15);
    margin-bottom: 40px;
    animation: float 4s ease-in-out infinite;
    overflow: hidden;
}

.coming-soon__badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent, var(--accent-cyan), var(--accent-purple), transparent);
    opacity: 0.15;
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.coming-soon__badge-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon__badge-pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.coming-soon__title {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.coming-soon__desc {
    position: relative;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 52px;
}

/* ---------- Email Form ---------- */
.email-form {
    position: relative;
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-medium);
}

.email-form:focus-within {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.06), 0 0 80px rgba(179, 102, 255, 0.03);
}

.email-form__input {
    flex: 1;
    padding: 16px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-sans);
    cursor: none;
}

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

.email-form__btn {
    padding: 16px 30px;
    background: var(--gradient-brand);
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: none;
    transition: all var(--transition-medium);
    white-space: nowrap;
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}

.email-form__btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.email-form__btn:hover::after {
    transform: translateX(100%);
}

.email-form__btn:hover {
    opacity: 0.95;
}

/* ---------- Footer ---------- */
.footer {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer__logo {
    height: 28px;
    opacity: 0.4;
    transition: all var(--transition-medium);
}

.footer__logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.footer__text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer__links {
    display: flex;
    gap: 28px;
    margin-top: 4px;
}

.footer__link {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width var(--transition-medium);
}

.footer__link:hover {
    color: var(--accent-cyan);
}

.footer__link:hover::after {
    width: 100%;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal.visible .not-chatbot__card:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.visible .not-chatbot__card:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.visible .not-chatbot__card:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.visible .what-we-do__item:nth-child(1) {
    transition-delay: 0.1s;
}

.reveal.visible .what-we-do__item:nth-child(2) {
    transition-delay: 0.2s;
}

.reveal.visible .what-we-do__item:nth-child(3) {
    transition-delay: 0.3s;
}

.reveal.visible .what-we-do__item:nth-child(4) {
    transition-delay: 0.4s;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .nav {
        padding: 18px 28px;
    }

    .hero {
        padding: 130px 28px 80px;
    }

    .not-chatbot {
        padding: 90px 28px;
    }

    .what-we-do {
        padding: 90px 28px;
    }

    .coming-soon {
        padding: 100px 28px;
    }

    .not-chatbot__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .stats__grid {
        gap: 16px;
    }

    .mesh-blob {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    .btn,
    .email-form__input,
    .email-form__btn {
        cursor: auto;
    }

    .nav {
        padding: 14px 16px;
    }

    .nav.scrolled {
        padding: 12px 16px;
    }

    .nav__logo img {
        height: 28px;
    }

    .nav__badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .hero {
        padding: 110px 16px 50px;
        min-height: calc(100dvh - 60px);
    }

    .hero__chip {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 32px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 36px;
        max-width: 100%;
        padding: 0 8px;
    }

    .hero__terminal {
        font-size: 11px;
        padding: 8px 14px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
    }

    .btn {
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .scroll-indicator {
        display: none;
    }

    .not-chatbot {
        padding: 60px 16px;
    }

    .not-chatbot__grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 32px;
    }

    .not-chatbot__card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .not-chatbot__card:hover {
        transform: none;
    }

    .not-chatbot__card h3 {
        font-size: 16px;
    }

    .not-chatbot__card p {
        font-size: 13px;
    }

    .marquee-item {
        font-size: 0.9rem;
    }

    .stats__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .stat {
        padding: 24px 12px;
    }

    .stat__number {
        font-size: 1.8rem;
    }

    .stat__label {
        font-size: 11px;
    }

    .what-we-do {
        padding: 60px 16px;
    }

    .what-we-do__item {
        flex-direction: column;
        padding: 20px 18px;
        border-radius: 14px;
    }

    .what-we-do__item:hover {
        transform: none;
    }

    .what-we-do__item h3 {
        font-size: 15px;
    }

    .what-we-do__item p {
        font-size: 13px;
    }

    .coming-soon {
        padding: 70px 16px;
    }

    .coming-soon__glow {
        width: 300px;
        height: 300px;
    }

    .coming-soon__badge {
        padding: 10px 20px;
    }

    .coming-soon__badge-text {
        font-size: 12px;
    }

    .coming-soon__title {
        font-size: clamp(1.6rem, 7vw, 2.6rem);
    }

    .coming-soon__desc {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .email-form {
        flex-direction: column;
        max-width: 100%;
    }

    .email-form__input {
        padding: 14px 16px;
        font-size: 14px;
        text-align: center;
    }

    .email-form__btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .footer {
        padding: 32px 16px;
    }

    .footer__links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .mesh-blob {
        width: 400px;
        height: 400px;
        opacity: 0.7;
    }

    .ring--1 {
        width: 300px;
        height: 300px;
    }

    .ring--2 {
        width: 200px;
        height: 200px;
    }

    .bg-grid {
        background-size: 50px 50px;
    }

    .hero__beam:nth-child(n+5) {
        display: none;
    }

    .section-title {
        font-size: clamp(1.6rem, 7vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 12px 12px;
    }

    .nav__logo img {
        height: 24px;
    }

    .hero {
        padding: 100px 12px 40px;
    }

    .hero__chip {
        font-size: 11px;
        margin-bottom: 24px;
    }

    .hero__title {
        font-size: 1.9rem;
    }

    .hero__subtitle {
        font-size: 0.9rem;
    }

    .hero__terminal {
        display: none;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 10px;
    }

    .not-chatbot {
        padding: 48px 12px;
    }

    .what-we-do {
        padding: 48px 12px;
    }

    .coming-soon {
        padding: 56px 12px;
    }

    .coming-soon__title {
        font-size: 1.4rem;
    }

    .stats__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .stat {
        padding: 20px 8px;
        border-radius: 14px;
    }

    .stat__number {
        font-size: 1.5rem;
    }

    .footer {
        padding: 24px 12px;
    }

    .section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
}

@media (hover: none) and (pointer: coarse) {

    .not-chatbot__card:hover,
    .what-we-do__item:hover,
    .btn--primary:hover,
    .btn--secondary:hover {
        transform: none;
    }

    .not-chatbot__card:active {
        border-color: var(--border-glow);
    }

    .what-we-do__item:active {
        background: var(--bg-card-hover);
    }
}

@supports (padding: max(0px)) {
    .nav {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .footer {
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
}