/* Оптимізоване завантаження шрифтів перенесено в HTML для кращої продуктивності */

:root {
    --primary: #0066ff;
    --secondary: #00d4ff;
    --accent: #ff0080;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #888888;
    --surface: #111111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transform-style: preserve-3d;
}

html {
    height: 100%;
    overflow-x: hidden;
}



body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100%;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 28px;
    width: auto;
    aspect-ratio: 145 / 42;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo img:hover {
    transform: scale(1.05);
}

.header-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover {
    color: #0AD88C;
    opacity: 1;
}

.twitter-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    transition: all 0.3s ease;
}

.twitter-link img {
    height: 20px;
    width: 20px;
    transition: all 0.3s ease;
}

.twitter-link:hover {
    color: #0AD88C;
}

.twitter-link:hover img {
    transform: scale(1.1);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0AD88C;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 120px 0 80px;
}

.hero-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 60px;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.04em;
    position: relative;
}

.hero h1 br {
    line-height: 0.9;
    margin: 0;
    padding: 0;
}

.hero h1 .static-text {
    opacity: 1;
}

#animatedText {
    color: #ffffff;
    display: inline-block;
    font-weight: inherit;
    font-family: inherit;
    min-width: 200px;
    transition: opacity 0.3s ease;
}

/* Вертикальний слайдер */
.text-slider-container {
    display: inline-block;
    position: relative;
    min-width: 200px;
    height: 1.3em;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: top;
    margin: 0;
    padding: 0;
    font-size: inherit;
}

.slider-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #cccccc;
    font-weight: inherit;
    font-family: inherit;
    font-size: inherit;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    white-space: nowrap;
    line-height: 1.3em;
}

.slider-text.current {
    transform: translateY(0);
    opacity: 1;
}

.slider-text.next {
    transform: translateY(100%);
    opacity: 0;
}

.slider-text.slide-out {
    transform: translateY(-100%);
    opacity: 0;
}

.slider-text.slide-in {
    transform: translateY(0);
    opacity: 1;
}

/* Video Demo Section */
.video-demo {
    padding: 0 0 80px;
}

.video-section-layout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

.video-text-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 350px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-text-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-weight: 300;
}

.video-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.demo-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    min-height: 300px;
}

.demo-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    color: #ffffff;
    z-index: 2;
}

.placeholder-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.placeholder-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.loading-animation {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 212, 255, 0.3);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

.demo-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

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

.video-right-content {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 350px;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

@media (max-width: 768px) {
    .header-right {
        display: none;
    }
    .hero-content {
        gap: 15px;
    }
    
    header {
        padding: 40px 0;
    }
    
    header .container {
        justify-content: center;
    }
    
    .logo {
        text-align: center;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero {
        padding: 220px 0 80px;
        margin-top: 30px;
    }
    
    .video-demo {
        padding: 60px 0;
    }
    
    .video-section-layout {
        flex-direction: column;
        min-height: auto;
        padding: 20px;
    }
    
    .video-text-content {
        position: static;
        transform: none;
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
        padding: 20px;
    }
    
    .video-text-content p {
        font-size: 1.2rem;
    }
    
    .video-container {
        max-width: 100%;
        margin-bottom: 20px;
        border-radius: 20px;
        padding: 6px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }
    
    .demo-video {
        width: 100%;
        height: auto;
        border-radius: 15px;
        min-height: 250px;
        max-height: 300px;
        object-fit: cover;
    }
    
    .video-right-content {
        position: static;
        transform: none;
        max-width: 100%;
        min-height: 150px;
    }
}

/* Vision Section */
.vision {
    padding: 80px 0;
    text-align: center;
    position: relative;
}



.vision-gif {
    width: 300px;
    height: 300px;
    margin: 0 auto 5px;
    display: block;
    border-radius: 50%;
}

.vision-label {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-text {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .vision {
        padding: 60px 0;
    }
    
    .vision-label {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .vision-text {
        font-size: 28px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .vision-text {
        font-size: 24px;
    }
    
    .video-container {
        max-width: 100%;
        margin-bottom: 20px;
        border-radius: 15px;
        padding: 4px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }
    
    .demo-video {
        width: 100%;
        height: auto;
        border-radius: 12px;
        min-height: 200px;
        max-height: 250px;
        object-fit: cover;
    }
    
    .container {
        padding: 0 20px;
    }
}



.letter {
    transform-origin: 50% 100%;
    display: inline-block;
    line-height: 1em;
    opacity: 0;
    transform: scale(0);
}

.letter-appear {
    animation: letterAppear 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.letter-disappear {
    animation: letterDisappear 1s ease-out forwards;
}

@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes letterDisappear {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.hero .description {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 40px;
    font-weight: 400;
    max-width: 720px;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    height: 56px;
    margin-left: auto;
    margin-right: auto;
    gap: 25px;
    position: relative;
    overflow: visible;
    z-index: 10;
}

/* Мобільна версія CTA контейнера */
@media (max-width: 768px) {
    .cta-container {
        height: 52px;
        max-width: 320px;
    }
    
    .input-container {
        flex-direction: column;
        gap: 15px;
    }
    

}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: transparent;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.7);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #0AD88C;
    min-width: 20px;
    transform-origin: center;
    display: inline-block;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: rgba(204, 204, 204, 0.7);
    line-height: 1.6;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    margin: 0;
    padding-left: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 20px 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 18px 0;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 18px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: transparent;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    padding: 0;
    transition: all 0.3s ease;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: transparent;
    transform: none;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 1rem;
    color: rgba(204, 204, 204, 0.8);
    line-height: 1.6;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

@media (max-width: 768px) {
    .faq {
        padding: 30px 0;
    }
    
    .faq-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .faq-item {
        padding: 0;
    }
    
    .faq-question {
        font-size: 0.95rem;
        padding: 12px 0;
    }
    
    .faq-answer {
        font-size: 0.8rem;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 12px;
    }
    
    .faq-icon {
         font-size: 1rem;
         min-width: 25px;
         margin-left: 15px;
         color: #0AD88C;
         transform-origin: center;
         display: inline-block;
         text-align: center;
     }
}

.input-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    gap: 25px;
    width: 100%;
    height: 56px;
    box-sizing: border-box;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
}

.input-container.slide-out {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.input-container.expanded {
    background: transparent;
    border: none;
    padding: 0;
    backdrop-filter: none;
    justify-content: flex-start;
}

.try-button {
    background: #ffffff;
    border: none;
    padding: 18px 0;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    min-width: 200px;
    text-align: center;
    height: 56px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.try-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    background: #f0f0f0;
}

.try-button.transformed {
    background: #0CE69A;
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.try-button.transformed:hover {
    transform: scale(1.1);
}

/* Email Form Styles */
.email-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 8px 0 20px;
    gap: 16px;
    width: 100%;
    max-width: 400px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 100%;
    
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);

    opacity: 0;
    pointer-events: none;
}

.email-form.slide-in {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: none !important;
    border-radius: 12px;
    padding: 16px 20px;
    outline: none !important;
    color: #ffffff;
    height: 56px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Message popup styles */
.message-popup {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    white-space: nowrap;
}

.message-popup.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.message-popup.message-success {
    background: #0AD88C;
    color: black;
}

.message-popup.message-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.message-popup.message-info {
    background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
}

#emailField {
    background: rgba(255, 255, 255, 0.1);
    border: none !important;
    border-radius: 12px;
    padding: 16px 20px;
    color: white;
    font-size: 16px;
    outline: none !important;
    box-shadow: none !important;
    transition: none !important;
    height: 56px;
    width: 100%;
}

#emailField:focus,
#emailField:focus-visible,
#emailField:active,
#emailField:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: none !important;
}

.email-input:focus,
.email-input:focus-visible,
.email-input:active,
.email-input:hover {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: none !important;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    background: #0CE69A;
    border: none;
    border-radius: 12px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.submit-button:hover {
    transform: scale(1.1);
    background: #0bd189;
}

.submit-button svg {
    color: #000000;
    width: 20px;
    height: 20px;
}

/* Confirmation Container Styles */
.confirmation-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 12px;
    padding: 0 20px;
    gap: 16px;
    width: 100%;
    max-width: 450px;
    height: 56px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
}

.confirmation-container.slide-in {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.confirmation-icon {
    color: #0AD88C !important;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.confirmation-icon path {
    stroke: #0AD88C !important;
}

.confirmation-text {
    color: #0AD88C !important;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    flex: 1;
}






.early-access-text {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 400;
    height: 24px;
    line-height: 24px;
    opacity: 0.5;
    text-align: center;
    margin: 0;
}

/* Force cache refresh - v1.2 - submit button fix */
/* CTA Section */
.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(255, 0, 128, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section .subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



.email-input {
    width: 100%;
    padding: 20px 140px 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 60px;
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.email-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.email-input::placeholder {
    color: #999999;
}

.cta-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.4);
}

.benefits {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit {
    text-align: left;
    opacity: 0.9;
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

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

.stat {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    color: #666666;
    font-size: 1rem;
    font-weight: 500;
}

/* Footer */




.footer-info {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 100;
}

/* Мобільна версія футера */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 0 20px;
    }
}

.copyright-text {
    color: #999999;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

.created-by {
    color: #999999;
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

.created-by a {
    color: #999999;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.created-by a:hover {
    opacity: 0.8;
}

/* Footer styles */
footer {
    padding: 40px 0;
    margin-top: 20px;
}

.footer-content {
    text-align: center;
}

.success-message {
    display: none;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: var(--dark);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    font-weight: 600;
    animation: fadeInUp 0.5s ease-out;
}

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

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

@keyframes buttonBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}



/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    header .container {
        justify-content: space-between;
        align-items: center;
    }

    .header-links {
        display: none;
    }



    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }



    .hero h1 {
        font-size: clamp(1.4rem, 4vw, 2rem);
        margin-bottom: 20px;
    }
    
    .hero h1 .static-text {
        font-size: inherit;
    }
    
    #animatedText {
        font-size: inherit;
    }
    
    .hero .description {
        font-size: 1.2rem;
    }



    .try-button {
        padding: 16px 35px;
        font-size: 1.1rem;
        min-width: 180px;
        height: 52px;
        color: #000000;
    }
    
    .try-button.transformed {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }
    
    .input-container {
        height: 56px;
        max-width: 320px;
    }
    
    .email-form {
        height: 56px;
        max-width: 320px;
    }





    .early-access-text {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Перемещаем видео сразу под кнопку */
    .video-demo {
        padding: 0 0 40px;
        order: -1;
    }

    .vision {
        padding: 40px 0;
    }

    .features {
        padding: 40px 0;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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



.features-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}



.feature-icon {
    width: 30%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
    margin-bottom: 30px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    background-attachment: fixed;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(204, 204, 204, 0.7);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}



@media (max-width: 768px) {
    .features {
        padding: 40px 0 20px;
    }
    

    
    .features-content {
        grid-template-columns: 1fr;
        gap: 5px;
        margin-bottom: 40px;
    }
    
    .feature-item {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    

}

/* System Requirements */
.system-requirements {
    text-align: center;
    margin-top: -20px;
    padding: 20px 0;
}

.requirements-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    margin: 0;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .system-requirements {
        margin-top: -20px;
        padding: 15px 0;
    }
    
    .requirements-text {
        font-size: 0.8rem;
    }
}