@font-face {
    font-family: 'Suisse Intl';
    src: url('fonts/SuisseIntl-Light.woff2') format('woff2'),
         url('fonts/SuisseIntl-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('fonts/SuisseIntl-Book.woff2') format('woff2'),
         url('fonts/SuisseIntl-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('fonts/SuisseIntl-Regular.woff2') format('woff2'),
         url('fonts/SuisseIntl-Regular.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('fonts/SuisseIntl-Medium.woff2') format('woff2'),
         url('fonts/SuisseIntl-Medium.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Suisse Intl';
    src: url('fonts/SuisseIntl-SemiBold.woff2') format('woff2'),
         url('fonts/SuisseIntl-SemiBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

body {
    background: #000;
    color: #fff;
    font-family: 'Suisse Intl', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    -webkit-backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    position: relative;
}



.logo-img {
    height: 42px;
    padding: 0px;
    /* border: 1px solid #1f1f1f; */
    width: auto;
    /* border-radius: 12px; */
    /* background: rgba(255, 255, 255, 0.05); */
}

.connect-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

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

/* Fixed bottom button */
.fixed-bottom-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    display: inline-block;
}

.fixed-bottom-btn:hover {
    background: #f0f0f0;
    transform: translateX(-50%) translateY(-1px);
}

.fixed-bottom-btn:active {
    transform: translateX(-50%) translateY(0);
}

.screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity 0.5s ease;
}



.subtitle {
    font-size: clamp(0.8rem, 1.5vw, 1.2rem);
    font-weight: 400;
    font-family: 'Suisse Intl', sans-serif;
    text-transform: none;
    letter-spacing: -0.02em;
    text-align: center;
    line-height: 1.2;
    max-width: 90vw;
    color: #888888;
    margin-bottom: 1rem;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.title {
    font-size: clamp(0.9rem, 1.8vw, 1.8rem);
    font-weight: 500;
    font-family: 'Suisse Intl', sans-serif;
    text-transform: none;
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1.2;
    max-width: 90vw;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10; /* Текст должен быть поверх сферы */
}



.title.sucking {
    transform: scale(0.1) translateY(0);
    opacity: 0;
}

.title.appearing {
    transform: scale(0.5) translateY(100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.title.normal {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.subtitle.initial {
    transform: scale(0.5) translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.subtitle.appearing {
    transform: scale(0.5) translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.subtitle.normal {
    transform: scale(1) translateY(0);
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.title.initial {
    transform: scale(0.5) translateY(100px);
    opacity: 0;
}

/* Анимации для контента */
.content-appearing {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.content-normal {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.screen-2 .title {
    color: #ffffff;
    font-size: clamp(0.7rem, 1.4vw, 1.4rem);
}

.screen-3 .title {
    font-size: clamp(0.6rem, 1.2vw, 1.2rem);
}

.screen-4 .title {
    font-size: clamp(0.5rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: normal;
}

.screen-5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.screen-5.visible {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.screen-5 .title {
    font-size: clamp(1.2rem, 2.4vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 1rem;
}

.screen-5 .subtitle {
    font-size: clamp(0.8rem, 1.6vw, 1.6rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 800px;
    text-align: center;
}



.galaxy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.screen-4 .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 800px;
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-4 .content-section.appearing {
    opacity: 0;
    transform: translateY(30px);
}

.screen-4 .content-section.normal {
    opacity: 1;
    transform: translateY(0);
}

.screen-4 .title.appearing {
    opacity: 0;
    transform: translateY(30px);
}

.screen-4 .title.normal {
    opacity: 1;
    transform: translateY(0);
}

.screen-4 .steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.screen-4 .step-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.screen-4 .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    /* background: #313131; */
    color: #ffffff;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.8rem;
    flex-shrink: 0;
    border: 1px solid #7d7d7d;
}

.screen-4 .step-text-block {
    background: #ffffff;
    border-radius: 100px;
    padding: 0rem 1.2rem;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 2.5rem;
    display: flex;
    align-items: center;
}



/* Text container for sections with multiple elements */
.text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    position: relative;
    z-index: 10; /* Текст должен быть поверх сферы */
}

.screen-3 .content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    width: 100%;
    height: 100vh;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-3 .content-section.appearing {
    opacity: 0;
    transform: translateY(30px);
}

.screen-3 .content-section.normal {
    opacity: 1;
    transform: translateY(0);
}

/* Специальная анимация для заголовка третьей секции */
.screen-3 .title.appearing {
    opacity: 0;
    transform: translateY(30px);
}

.screen-3 .title.normal {
    opacity: 1;
    transform: translateY(0);
}

.screen-3 .comparison-container {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    width: 100%;
    max-width: 800px;
    height: 40vh;
}

.screen-3 .comparison-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.screen-3 .comparison-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    height: 100%;
    text-align: left;
}

.screen-3 .comparison-title {
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    text-align: left;
}

.screen-3 .comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.screen-3 .comparison-list li {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.9;
    line-height: 1.4;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.screen-3 .comparison-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.6rem;
}

/* Красные квадратики для блока "Before" */
.screen-3 .comparison-column:first-child .comparison-list li::before {
    color: #ff4444;
}

/* Светло-фиолетовые квадратики для блока "With Athanor" */
.screen-3 .comparison-column:last-child .comparison-list li::before {
    color: #b19cd9;
}

.screen-3 .section-description {
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.5;
    line-height: 1.4;
    max-width: 600px;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .screen-3 .comparison-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .screen-3 .comparison-column {
        width: 100%;
    }
    
    .screen-3 .content-section {
        gap: 2rem;
    }
    
    .dropdown-image {
        max-width: 250px;
    }
    
    .screen-2 .title {
        font-size: clamp(0.4rem, 0.8vw, 0.8rem);
    }
}







/* Benefits container styles */
.benefits-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
}

.benefit {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.benefit h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

/* FAQ container styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    width: 100%;
    margin-top: 2rem;
}

.faq-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

/* Footer styles */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.footer-logo {
    height: 24px;
    width: auto;
}

.footer-text {
    font-size: 0.8rem;
    color: #666666;
    margin: 0;
}

.footer-right .connect-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: 'Suisse Intl', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-right .connect-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.footer-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}



.sphere-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Уменьшили z-index чтобы сфера была позади текста */
    pointer-events: none;
}

.screen-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 1;
    z-index: 15;
    pointer-events: auto;
}

.screen-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.screen-1.hidden {
    opacity: 0;
    z-index: 5;
}

.screen-1.visible {
    opacity: 1;
    z-index: 15;
    pointer-events: auto;
}

.screen-2.visible {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.screen-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.screen-3.visible {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.screen-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.screen-4.visible {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}



.screen-2-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    height: 100vh;
    padding: 0 20px;
}

.dropdown-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.139);
    border-radius: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-image.appearing {
    opacity: 0;
    transform: translateY(30px);
}

.dropdown-image.normal {
    opacity: 1;
    transform: translateY(0);
}

.screen-2 .title {
    position: relative;
    z-index: 20;
    font-size: clamp(0.5rem, 1vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: normal;
}

.title {
    font-size: clamp(1.1rem, 2.2vw, 2.2rem);
    font-weight: 500;
    font-family: 'Suisse Intl', sans-serif;
    text-transform: none;
    letter-spacing: -0.03em;
    text-align: center;
    line-height: 1.2;
    max-width: 90vw;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10; /* Текст должен быть поверх сферы */
}




.cursor {
    display: inline-block;
    animation: blink 0.8s infinite;
    font-weight: 300;
    font-family: 'Suisse Intl', sans-serif;
    color: #ffffff;
    font-size: 0.8em;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}


.progress {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    font-family: 'Suisse Intl', sans-serif;
    opacity: 0.5;
    z-index: 100;
    transition: all 0.3s ease;
}

/* Убираем скроллбар */
::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .title {
        font-size: 1rem;
        max-width: 95vw;
    }
    
    .header-content {
        padding: 15px;
    }
    
    .logo-img {
        height: 28px;
        padding: 8px;
    }
    
    .connect-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1920px) {
    .title {
        font-size: 2.2rem;
        max-width: 80vw;
    }
}