@font-face {
    font-family: 'CircularStd';
    src: url('/asetss/fonts/CircularStd/CircularStd-Black.eot');
    src: local('CircularStd Black'), local('CircularStd-Black'), url('/asetss/fonts/CircularStd/CircularStd-Black.eot?#iefix') format('embedded-opentype'),
        url('/asetss/fonts/CircularStd/CircularStd-Black.woff2') format('woff2'), url('/asetss/fonts/CircularStd/CircularStd-Black.woff') format('woff'), url('/asetss/fonts/CircularStd/CircularStd-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'CircularStd';
    src: url('/asetss/fonts/CircularStd/CircularStd-Bold.eot');
    src: local('Gilroy Bold'), local('Gilroy-Bold'), url('/asetss/fonts/CircularStd/CircularStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('/asetss/fonts/CircularStd/CircularStd-Bold.woff2') format('woff2'), url('/asetss/fonts/CircularStd/CircularStd-Bold.woff') format('woff'), url('/asetss/fonts/CircularStd/CircularStd-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'CircularStd';
    src: url('/asetss/fonts/CircularStd/CircularStd-Medium.eot');
    src: local('Gilroy Medium'), local('Gilroy-Medium'), url('/asetss/fonts/CircularStd/CircularStd-Medium.eot?#iefix') format('embedded-opentype'),
        url('/asetss/fonts/CircularStd/CircularStd-Medium.woff2') format('woff2'), url('/asetss/fonts/CircularStd/CircularStd-Medium.woff') format('woff'), url('/asetss/fonts/CircularStd/CircularStd-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    overflow: hidden;
    scroll-behavior: smooth;
    --familyFont: CircularStd, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--familyFont);
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    background-color: #fff;
}

button {
    font-family: var(--familyFont);
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    z-index: 100;
}

.logo {
    display: flex;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 28px;
    color: #111827;
    padding-top: 5px;
    padding-left: 5px;
}


/* Main Content */
.main-container {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1280px;
    flex-grow: 1;
    align-items: center;
    padding: 0 1rem 4rem;
    margin: 0 auto;
}

.main-container::before {
    content: '';
    position: absolute;
    top: -175px;
    left: -500px;
    width: 928px;
    height: 928px;
    background-color: rgba(249, 248, 113, 0.1);
    filter: blur(50px);
}

.content {
    flex: 1;
    width: 100%;
    max-width: 530px;
}

.hero-title {
    width: 340px;
    position: relative;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 39px;
    height: 5px;
    border-radius: 6px;
    background-color: #00B4A9;
}

.hero-title .highlight {
    color: #20d0d8;
}

.hero-subtitle {
    width: 100%;
    max-width: 500px;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: block;
    width: 160px;
    font-weight: 900;
    font-size: 18px;
    line-height: 23px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    background-color: #00B4A9;
    transform: translateY(0px);
    box-shadow: 0px 1px 2px rgba(0, 180, 169, 0.06), 0px 1px 3px rgba(0, 180, 169, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 208, 216, 0.3);
}


/* Phone Mockup */
.phone-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.phone-container::before {
    content: '';
    position: absolute;
    left: 70px;
    bottom: -50px;
    width: 510px;
    height: 510px;
    background-color: rgba(89, 162, 255, 0.1);
    filter: blur(50px);
}

.phone-container::after {
    content: '';
    position: absolute;
    top: -115px;
    right: -205px;
    width: 366px;
    height: 366px;
    background-color: rgba(249, 248, 113, 0.1);
    filter: blur(50px);
}

/* .phone {
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
} */

.phone-screen-one {
    position: absolute;
    top: 20px;
    right: 200px;
    width: 290px;
    height: 586px;
    z-index: 1;
}

.phone-screen-two {
    position: relative;
    top: -80px;
    right: 30px;
    width: 333px;
    height: 676px;
    z-index: 2;
}

.fantom {
    position: absolute;
    right: -150px;
    bottom: 20px;
    width: 683px;
    height: 509px;
}

.fantom img {
    width: 100%;
    height: 100%;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.dot-big {
    width: 16px;
    height: 16px;
}

.dot-medium {
    width: 12px;
    height: 12px;
}

.dot-small {
    width: 9px;
    height: 9px;
}

.dot-tiny {
    width: 8px;
    height: 8px;
}

.dot-orange {
    background-color: #EF4444;
}

.dot-blue {
    background-color: #20d0d8;
}

.dot-test {
    background-color: red;
}

.dot-test2 {
    background-color: black;
}

.dot-test3 {
    background-color: green;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.dot-2 {
    top: 58%;
    left: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.dot-4 {
    top: 20%;
    left: 60%;
    animation: float 7s ease-in-out infinite;
}

.dot-5 {
    bottom: 20%;
    left: 45%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Responsive */
@media (max-width: 1010px) {
    html {
        overflow: auto;
    }

    .header {
        margin-bottom: 35px;
    }

    .main-container {
        flex-direction: column;
    }

    .content {
        margin-bottom: 70px;
    }

    .hero-title {
        width: 100%;
        font-size: 2.9rem;
    }

    .hero-title::before {
        width: 69px;
    }

    .hero-subtitle {
        text-align: center;
    }

    .cta-button {
        margin: 0 auto;
    }

}

@media (max-width: 510px) {
    .phone-screen-one{
        display: none;
    }

}

@media (max-width: 380px) {
    .phone-screen-two{
        right: 45px;
    }

}