:root {
    --color-bg: #000;
    --color-bg-secondary: #1a1a1a;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-primary: #6366f1;
    --color-secondary: #8b5cf6;
    --color-accent: #ec4899;
    --color-text: #ffffff;
    --color-text-secondary: #a1a1aa;
    --color-border: rgba(255, 255, 255, 0.08);
    
    --font-display: 'Syne', sans-serif;
    --font-body: 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
    transition: red 0.3s, -webkit-backdrop-filter 0.3s, border-bottom 0.3s;
}

/* Navbar scroll effect */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    -webkit-backdrop-filter: blur(20px); /* blur effect for Safari */
    backdrop-filter: blur(20px); /* blur effect for modern browsers */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Slide down animation */
@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}


.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.logo-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /*animation: rotate 20s linear infinite;*/
}

.logo-icon img{
    padding: 15px 0px 0;
}

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

.logo-text {
    color: var(--color-text);
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

/* Navigation Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(15, 15, 15, 0.98);
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    transform: translateX(-50%) rotate(45deg);
    z-index: -1;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(99, 102, 241, 0.15);
    color: var(--color-primary);
    transform: translateX(4px);
}

/* Animation for dropdown items */
.nav-dropdown:hover .nav-dropdown-menu li {
    animation: slideInDown 0.3s ease backwards;
}

.nav-dropdown:hover .nav-dropdown-menu li:nth-child(1) { animation-delay: 0.05s; }
.nav-dropdown:hover .nav-dropdown-menu li:nth-child(2) { animation-delay: 0.1s; }
.nav-dropdown:hover .nav-dropdown-menu li:nth-child(3) { animation-delay: 0.15s; }

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


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

.btn-login {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.btn-language {
    min-width: 70px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.75rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.btn-language::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-language:hover::before {
    left: 100%;
}

.btn-language:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(99, 102, 241, 0.2),
        0 0 20px rgba(99, 102, 241, 0.1);
}

.btn-language:active {
    transform: translateY(0);
}

.btn-language svg {
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.current-lang {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--color-primary);
}

/* Language Selector Dropdown */
.language-selector {
    position: relative;
}

/* Active state when dropdown is open */
.language-selector .btn-language[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    border-color: var(--color-primary);
    box-shadow: 
        0 4px 12px rgba(99, 102, 241, 0.3),
        0 0 20px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(15, 15, 15, 0.98);
    border-left: 1px solid rgba(99, 102, 241, 0.2);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    transform: rotate(45deg);
    z-index: -1;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    text-align: left;
}

.lang-option:hover {
    background: rgba(99, 102, 241, 0.1);
}

.lang-option.active {
    background: rgba(99, 102, 241, 0.15);
}

.lang-flag {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.lang-name {
    flex: 1;
    font-weight: 500;
}

.lang-checkmark {
    color: var(--color-primary);
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lang-option.active .lang-checkmark {
    opacity: 1;
}

/* Animation for dropdown items */
.language-dropdown.active .lang-option {
    animation: slideInDown 0.3s ease backwards;
}

.language-dropdown.active .lang-option:nth-child(1) { animation-delay: 0.05s; }
.language-dropdown.active .lang-option:nth-child(2) { animation-delay: 0.1s; }
.language-dropdown.active .lang-option:nth-child(3) { animation-delay: 0.15s; }
.language-dropdown.active .lang-option:nth-child(4) { animation-delay: 0.2s; }
.language-dropdown.active .lang-option:nth-child(5) { animation-delay: 0.25s; }
.language-dropdown.active .lang-option:nth-child(6) { animation-delay: 0.3s; }

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 12rem 3rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: blur(0px);
    /*transform: scale(1.05);*/
    transition: transform 0.3s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(48 46 46 / 45%) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
    z-index: 2;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    width: 100%;
    margin-right: auto;
}

.hero-label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-subtitle{
    font-size: clamp(1rem, 7vw, 1.3rem);
    margin-bottom: 3rem;
    color: var(--color-text-secondary);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: fadeInUp 0.8s ease-out 0.5s both, gradientShift 4s ease infinite;
}

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

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

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    
}

.btn-experience {
    padding: 1rem 2.5rem;
    background: var(--color-text);
    color: var(--color-bg);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.btn-experience:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-showcases {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-showcases:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
}

.hero-partners {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.6s both;

    position: absolute;
    bottom: 20px;
    justify-self: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.75rem;
    line-height: 1.3;
}

.partner-logo img {
    width: 150px;
}

.partner-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.hero-get-started {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 10;
    animation: fadeInRight 0.8s ease-out 0.7s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.get-started-header {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.code-window {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27c93f; }

.code-content {
    font-family: var(--font-mono);
    color: var(--color-text);
    font-size: 0.95rem;
}

.playground-link {
    display: block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.playground-link:hover {
    color: var(--color-secondary);
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out both;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

.title-line.highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: fadeInUp 0.8s ease-out 0.5s both, gradientShift 4s ease infinite;
}

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

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


.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    margin: 0.5rem auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* Section Styles */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 5rem;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Solutions Carousel Section */
.solutions-carousel-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.03) 0%, transparent 100%);
    position: relative;
}

.solutions-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-subtitle {
    font-size: 1.125rem;
    color: #9ca3af;
}

.solutions-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    max-width: 100vw;
}

.solutions-carousel-container::before,
.solutions-carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 1.5rem;
    width: 60px;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.solutions-carousel-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.solutions-carousel-container::after {
    right: 0;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}

.solutions-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(99, 102, 241, 0.5) rgba(255, 255, 255, 0.05);
    position: relative;
    padding: 0.5rem 20px 1.5rem 20px;
    cursor: grab;
}

.solutions-carousel:active {
    cursor: grabbing;
}

/* Modern Scrollbar Styling */
.solutions-carousel::-webkit-scrollbar {
    height: 10px;
}

.solutions-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 0 20px;
}

.solutions-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.solutions-carousel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.solutions-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}


.solution-card {
    min-width: 500px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(99, 102, 241, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    transform: translateY(-12px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.solution-card:hover::after {
    opacity: 1;
}

.solution-icon {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: #6366f1;
    transition: all 0.4s ease;
    position: relative;
}

.solution-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 20px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.solution-card:hover .solution-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    transform: scale(1.08) rotate(-3deg);
}

.solution-card:hover .solution-icon::before {
    opacity: 0.6;
}

.solution-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.solution-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.3;
}

.solution-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #a0a0a0;
    margin: 0;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.solution-features li {
    font-size: 0.95rem;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.solution-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.6);
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1.5px solid rgba(99, 102, 241, 0.4);
    border-radius: 12px;
    color: #c4b5fd;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.solution-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-cta:hover {
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateX(6px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}

.solution-cta:hover::before {
    opacity: 1;
}

.solution-cta span {
    position: relative;
    z-index: 1;
}

.solution-cta svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.solution-cta:hover svg {
    transform: translateX(6px);
}

.solution-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1.125rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    border: 1px solid rgba(99, 102, 241, 0.5);
    border-radius: 50px;
    color: #c4b5fd;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Mission Section */
.mission-section {
    background: var(--color-bg);
    padding: 6rem 0 4rem;
}

.mission-intro {
    max-width: 900px;
    margin: 0 auto;
}

.mission-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    text-align: center;
}

/* AI Foundation Models Section */
.models-section {
    background: var(--color-bg);
}

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

.model-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.model-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.model-card:hover::before {
    /*transform: scaleX(1);*/
}

.model-card:hover::after {
    opacity: 1;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 24px 48px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.model-card.featured {
    /*background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);*/
}

.featured-badge {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.model-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
    transition: var(--transition);
}

.model-card:hover .model-icon svg {
    transform: scale(1.1) translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.5));
}


.model-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.model-desc {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.model-features {
    list-style: none;
    margin-bottom: 2rem;
}

.model-features li {
    padding: 0.75rem 0;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
}



.model-footer {
    /*display: flex;*/
    display: none !important;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.model-price {
    font-family: var(--font-mono);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-explore {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.btn-explore:hover {
    transform: translateX(5px);
    color: var(--color-secondary);
}

/* Models Section */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.model-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.model-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.model-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}



.model-card:hover::after {
    opacity: 1;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 24px 48px rgba(99, 102, 241, 0.15);
    background: rgba(255, 255, 255, 0.05);
}
/*
.model-card.featured {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}
*/

.model-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.model-desc {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.model-features {
    list-style: none;
   /* margin-bottom: 2rem; */
}

.model-features li {
    padding: 0.75rem 0;
    color: var(--color-text-secondary);
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
}

.model-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: 700;
}

.model-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.model-price {
    font-family: var(--font-mono);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-explore {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.btn-explore:hover {
    transform: translateX(5px);
    color: var(--color-secondary);
}

/* Piti Creative Assistant Section */
.piti-section {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

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

.piti-content {
    max-width: 600px;
}

.piti-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.piti-badge svg {
    width: 16px;
    height: 16px;
}

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

.piti-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.piti-subtitle {
    font-size: 1.5rem;
    color: #c4b5fd;
    margin-bottom: 1rem;
    font-weight: 500;
}

.piti-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.piti-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.piti-feature {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.piti-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #a78bfa;
}

.piti-feature h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 0;
}

.piti-feature p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.piti-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-piti-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 12px rgba(139, 92, 246, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
}

.btn-piti-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(139, 92, 246, 0.3);
}

.btn-piti-primary svg {
    transition: transform 0.3s ease;
}

.btn-piti-primary:hover svg {
    transform: translateX(4px);
}

.btn-piti-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #c4b5fd;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-piti-secondary:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-2px);
}

.piti-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.piti-stat {
    text-align: center;
}

.piti-stat h4 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem 0;
}

.piti-stat p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.piti-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.piti-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
}

.piti-card {
    position: absolute;
    width: 280px;
    padding: 1.5rem;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.piti-card-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.piti-card-2 {
    top: 120px;
    right: 0;
    animation-delay: 2s;
}

.piti-card-3 {
    bottom: 0;
    left: 50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.piti-card-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border-radius: 12px;
    flex-shrink: 0;
}

.piti-card-text {
    flex: 1;
}

.piti-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.25rem;
}

.piti-card-status {
    font-size: 0.85rem;
    color: #10b981;
}

.piti-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glow 4s ease-in-out infinite alternate;
    pointer-events: none;
}

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


/* Physical AI Robots Section */
.robots-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 50%, var(--color-bg) 100%);
}

.robots-showcase {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.robot-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.robot-item.reverse {
    direction: rtl;
}

.robot-item.reverse > * {
    direction: ltr;
}

.robot-image {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
}

.robot-visual {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.robot-visual::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 100px;
    border: 3px solid rgba(99, 102, 241, 0.4);
    border-radius: 8px;
    box-shadow: 
        0 0 20px rgba(99, 102, 241, 0.2),
        inset 0 0 20px rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.robot-visual::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(99, 102, 241, 0.2),
        inset 0 0 15px rgba(99, 102, 241, 0.1);
    transition: var(--transition);
}

.robot-visual:hover::before,
.robot-visual:hover::after {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.4),
        inset 0 0 30px rgba(99, 102, 241, 0.2);
    transform: translateX(-50%) scale(1.05);
}

.robot-visual.humanoid {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
}

.robot-visual.humanoid::before {
    border-radius: 12px 12px 20px 20px;
}

.robot-visual.industrial {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(139, 92, 246, 0.05));
}

.robot-visual.industrial::before {
    border-radius: 4px;
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 
        0 0 20px rgba(236, 72, 153, 0.2),
        inset 0 0 20px rgba(236, 72, 153, 0.1);
}

.robot-visual.industrial::after {
    border-radius: 4px;
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 
        0 0 15px rgba(236, 72, 153, 0.2),
        inset 0 0 15px rgba(236, 72, 153, 0.1);
}

.robot-visual.industrial:hover::before,
.robot-visual.industrial:hover::after {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 
        0 0 30px rgba(236, 72, 153, 0.4),
        inset 0 0 30px rgba(236, 72, 153, 0.2);
}

.robot-visual.mobile {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
}

.robot-visual.mobile::before {
    width: 100px;
    height: 60px;
    border-radius: 30px;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
}

.robot-visual.mobile::after {
    width: 40px;
    height: 40px;
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.2),
        inset 0 0 15px rgba(139, 92, 246, 0.1);
}

.robot-visual.mobile:hover::before,
.robot-visual.mobile:hover::after {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 
        0 0 30px rgba(139, 92, 246, 0.4),
        inset 0 0 30px rgba(139, 92, 246, 0.2);
}

.robot-info h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.robot-info p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.robot-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.spec {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.65rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: var(--font-mono);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.spec:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

/* Robot Section - Learn More Button */
.robot-info .btn {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-family: var(--font-primary);
}

.robot-info .btn-secondary {
    background: rgb(0 0 0 / 41%);
    color: var(--color-text);
    border: 1.5px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(20px);
}

/* Shine effect overlay */
.robot-info .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: left 0.6s ease;
}

.robot-info .btn-secondary:hover::before {
    left: 100%;
}

/* Arrow icon */
.robot-info .btn-secondary::after {
    content: '→';
    position: absolute;
    right: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.robot-info .btn-secondary:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.robot-info .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    padding-right: 3rem;
}

.robot-info .btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

/* Glow effect on hover */
.robot-info .btn-secondary:hover {
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.4),
        0 0 60px rgba(99, 102, 241, 0.2),
        inset 0 0 20px rgba(99, 102, 241, 0.1);
}

/* Integration Section */
.integration-section {
    background: var(--color-bg);
}

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

.integration-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.integration-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.integration-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.integration-card:hover::after {
    opacity: 1;
}

.integration-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.integration-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.25));
    transition: var(--transition);
}

.integration-card:hover .integration-icon svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 4px 16px rgba(99, 102, 241, 0.4));
}

.integration-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.integration-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
    padding: 10rem 0;
}

.contact-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.contact-cta-box {
    background: #000;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
}

.install-showcase {
    margin-bottom: 3rem;
}

.install-box-large {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.install-box-large .install-prompt {
    color: var(--color-primary);
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 1.3rem;
}

.install-box-large .install-command {
    flex: 1;
    color: var(--color-text);
    font-family: var(--font-mono);
    font-size: 1.1rem;
}

.install-subtext {
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1), transparent 70%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 2fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    position: relative;
}

.footer-brand {
    max-width: 320px;
}

.footer-tagline {
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 1.5rem 0 1rem;
    line-height: 1.5;
}

.footer-description {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--color-text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
}

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

.footer-column ul li {
    margin-bottom: 0.9rem;
}

.footer-column a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--color-primary);
    transform: translateX(3px);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.footer-newsletter p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: var(--color-text-secondary);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.newsletter-btn {
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-left p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal .separator {
    color: var(--color-text-secondary);
    opacity: 0.3;
}

.footer-legal a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

.footer-bottom-right {
    display: flex;
    align-items: center;
}

.footer-badges {
    display: flex;
    gap: 0.75rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .robot-item {
        grid-template-columns: 1fr;
    }
    
    .robot-item.reverse {
        direction: ltr;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: flex;
        gap: 0.5rem;
    }
    
    .btn-login {
        display: none;
    }
    
    .language-selector {
        position: static;
    }
    
    .language-dropdown {
        position: fixed;
        top: 70px;
        right: 1rem;
        left: auto;
        width: calc(100% - 2rem);
        max-width: 300px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 8rem 1.5rem 4rem;
    }
    
    .hero-bg-image {
        opacity: 0.25;
    }
    
    .hero-content {
        padding-right: 0;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-partners {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .hero-get-started {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 3rem;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .robot-item {
        grid-template-columns: 1fr;
    }
    
    .robot-image {
        height: 300px;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-actions {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-left {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        max-width: 50%;
    }
    
    .hero-get-started {
        right: 3%;
        width: 280px;
    }
}


.reimagined{
    background: linear-gradient(135deg, #d1d1d1 0%, #828282 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: fadeInUp 0.8s ease-out 0.5s both, gradientShift 4s ease infinite;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
430px
;
    height: 100%;
    object-fit: cover;
    background-image: linear-gradient(to bottom, rgb(0 0 0 / 33%) 50%, rgb(0 0 0));
}


.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  
  .particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(100, 179, 244, 0.5);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
  }
  
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  
  @keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-50%, -48%) rotate(1deg) scale(1.02);
    }
    50% {
        transform: translate(-50%, -52%) rotate(0deg) scale(0.98);
    }
    75% {
        transform: translate(-50%, -48%) rotate(-1deg) scale(1.01);
    }
  }
  
  @keyframes glow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.1);
    }
  }
  
  @keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
  }
  
  @media (max-width: 768px) {
    .floating-card{
        display: none
    };

    .mission-content {
        padding: 0 1rem;
    }
    
    .background-logo {
        width: 80vw;
        height: 80vw;
    }
  }



  .floating-card{
    background:rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius:16px;
    box-shadow:0 4px 24px #0000000f,0 1px 3px #0000000a;
    padding: 32px;
    max-width:400px;
    width:max-content;
    animation:_ngcontent-wod-c186_float 6s ease-in-out infinite;border:1px solid #f0f0f0;
    margin-top: -6rem;
    width: 100%;
}
    
    @keyframes _ngcontent-wod-c186_float{
        0%,to{
            transform:translateY(0)
        }
        50%{
            transform:translateY(-8px)
        }
    }

/* Request Demo Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(20, 20, 25, 0.95));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-subtitle {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.modal-subtitle #selectedModel {
    color: var(--color-primary);
    font-weight: 600;
}

/* Form Styles */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-mono);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    color: var(--color-text);
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(99, 102, 241, 0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a0a0a0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    border-radius: 14px;
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.4),
        0 0 60px rgba(99, 102, 241, 0.2);
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

/* Loading Spinner */
.spinner {
    animation: rotate 1s linear infinite;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.spinner .path {
    stroke: currentColor;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Form Messages */
.form-message {
    text-align: center;
    padding: 3rem 2rem;
}

.form-message svg {
    margin-bottom: 1.5rem;
}

.form-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.form-message p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.form-message.success h3 {
    color: #10b981;
}

.form-message.error h3 {
    color: #ef4444;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .modal.active {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 4rem;
    }

    .modal-content {
        max-width: 100%;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.95rem;
    }
}

.playground-section{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.btn-cta{
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    font-family: var(--font-primary);
}