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

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f5f5;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
}

/* COMMON */
.container {
    width: 100%;
}

@media (width >=640px) {
    .container {
        max-width: 640px;
    }
}

@media (width >=768px) {
    .container {
        max-width: 768px;
    }
}

@media (width >=1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (width >=80rem) {
    .container {
        max-width: 1280px;
    }
}

@media (width >=96rem) {
    .container {
        max-width: 1536px;
    }
}

.header-spacing {
    height: 83px;
}

.gradient-divider {
    height: 1px;
    margin: auto;
    width: 100%;
    max-width: 1240px;
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            #1E9564 52%,
            #FFFFFF 100%);
}


/* HEADER */
header {
    position: fixed;
    width: 100%;
    z-index: 12;
    height: 83px;
    padding: 0 20px;
    background: #f5f5f5;
}

header .nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    height: 100%;
    width: 100%;
}

@media (min-width: 768px) {
    header .nav {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    header .nav {
        gap: 64px;
    }
}

header .nav .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

header .nav .logo-link .logo-image {
    display: block;
    width: 160px;
    height: auto;
}

header .nav-content {
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

header .nav-menu {
    display: none
}

@media (min-width: 768px) {
    header .nav-content {
        flex: 1;
        justify-content: space-between;
    }

    header .nav-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    header .nav-menu {
        display: flex;
        align-items: center;
        gap: 40px;
    }
}

header .nav-menu>.nav-menu-item {
    font-size: 16px;
    color: #111111;
    letter-spacing: 0.16px;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
}

header .nav-menu>.nav-menu-item.active {
    color: #1A8457;
}

header .nav-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

header .nav-menu-mobile-btn.open-btn {
    display: block;
    min-width: 100%;
}

header .nav-menu-mobile-btn.close-btn {
    display: none;
}

@media (min-width: 768px) {
    header .nav-actions {
        gap: 1.5rem;

    }

    header .nav-menu-mobile-btn {
        display: none !important;
    }
}

header .nav-menu-icon {
    width: 24px;
    height: auto;
    cursor: pointer;
}


header .nav-menu-mobile {
    display: none;
    position: fixed;
    top: 83px;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
}

header .nav-menu-mobile.active {
    display: block;
}

header .nav-menu-mobile-content {
    height: 100%;
    background-color: #f5f5f5;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

header .nav-menu-mobile .nav-menu-item {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}

header .nav-menu-mobile .nav-menu-item.active {
    color: #1A8457;
}

/* DOWNLOAD BUTTON */
.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(95deg, #009F66 23%, #00BC79 100%);
    border-radius: 12px;
    font-size: 16px;
    color: #FFFFFF;
    letter-spacing: 0.16px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.download-button.medium {
    padding: 8px 16px;
    width: 110px;
    height: 36px;
}

.download-button.large {
    padding: 14px 20px;
    width: 160px;
    height: 47px;
}

@media (max-width: 350px) {
    .download-button {
        padding: 2px 4px !important;
        width: auto !important;
    }
}


/* FOOTER */
footer {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

footer .footer-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
    width: 100%;
}

footer .footer-container {
    position: relative;
    width: 100%;
}

footer .footer-bg-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 992px;
    height: 300px;
    object-fit: cover;
    pointer-events: none;
    filter: blur(30px);
}

footer .footer-content {
    position: relative;
    padding-bottom: 16px;
    margin: 0 auto;
    padding: 40px 24px;
}

@media (min-width: 768px) {
    footer .footer-content {
        display: flex;
        flex-direction: column;
        padding: 0;
        padding-top: 80px;
    }
}

.footer-brand {
    width: 100%;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-right: 2.625rem;
    text-decoration: none !important;
}

.footer-logo-img {
    display: block;
    width: 10rem;
    height: 2rem;
    border-radius: 0.375rem;
}


.footer-text {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.footer-text.copyright {
    margin-top: 18px;
    margin-bottom: 0.25rem;
}

.footer-text a {
    text-decoration: underline;
}

/* HOME */
/* Introduce Section */
.home-introduce-section {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.home-introduce-section .introduce-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 40px 24px;
}

@media (min-width: 768px) {
    .home-introduce-section .introduce-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
        margin: 0 auto;
        padding: 160px 0;
    }
}

.home-introduce-section .left-side {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.home-introduce-section .signet-platform-image {
    width: 250px;
    height: auto;
    margin-bottom: 24px;
}

.home-introduce-section .description {
    font-size: 20px;
    color: #111111;
    letter-spacing: 0;
    font-weight: 500;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .home-introduce-section .left-side {
        width: auto;
    }

    .home-introduce-section .signet-platform-image {
        width: 350px;
        margin-bottom: 24px;
    }

    .home-introduce-section .description {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

.home-introduce-section .right-side {
    position: relative;
    flex: 1;
    width: 100%;
}


.home-introduce-section .header-image {
    position: relative;
    max-width: 964px;
    width: 100%;
    height: auto;
}

@media (min-width: 768px) {
    .home-introduce-section .header-image {
        position: absolute;
        right: -40px;
        top: 0;
        transform: translateY(-50%);
    }
}


/* Home Body */
.home-body {
    position: relative;
    padding: 24px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #F5F5F5 0%, #E5F0EC 100%);
}

.home-body .scroll-mock {
    position: absolute;
    top: -80px;
}

@media (min-width: 768px) {
    .home-body {
        padding: 80px 0;

    }
}

.home-body .download-title {
    font-size: 24px;
    color: #111111;
    letter-spacing: 0.88px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.home-body .download-description {
    font-size: 18px;
    color: #111111;
    letter-spacing: 0;
    text-align: center;
    font-weight: 500;
    margin-bottom: 74px;
}

@media (min-width: 576px) {
    .home-body .download-title {
        font-size: 32px;
    }

    .home-body .download-description {
        font-size: 20px;
    }
}


@media (min-width: 768px) {
    .home-body .download-title {
        font-size: 44px;
    }

    .home-body .download-description {
        font-size: 28px;
    }
}

.home-body .download-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    background-image: linear-gradient(248deg, rgba(71, 71, 71, 0.12) 0%, rgba(156, 156, 156, 0.06) 56%, rgba(141, 141, 141, 0.12) 100%);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 24px;
}

.home-body .download-wrapper::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(90deg, white, rgba(51, 239, 162, 1), white, rgba(51, 239, 162, 1));
    background-size: 400%;
    border-radius: 20px;
    animation: borderAnimation 4s linear infinite;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 2px;
}

@keyframes borderAnimation {
    0% {
        background-position: 0% 50%;
    }

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

@media (min-width: 768px) {
    .home-body .download-wrapper {
        flex-direction: row;
        padding: 40px;
    }
}

.home-body .left-side,
.home-body .right-side {
    flex: 1;
    z-index: 1;
}

.home-body .left-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-body .phone-image {
    aspect-ratio: 1/1;
    object-fit: cover;
    max-width: 100%;
}

.home-body .right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-body .download-content {
    max-width: 400px;
}

@media (min-width: 768px) {
    .home-body .download-content {
        margin-left: 40px;
    }
}

.home-body .download-instruction {
    font-size: 20px;
    color: #111111;
    letter-spacing: 0.48px;
    font-weight: 600;
    margin-bottom: 28px;
    max-width: 357px;
}

@media (min-width: 576px) {
    .home-body .download-content {
        font-size: 24px;
    }
}


.home-body .download-links {
    display: flex;
    gap: 40px;
    margin-bottom: 28px;
}

.home-body .app-store,
.home-body .google-play {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-body .qr-image {
    width: 100%;
    max-width: 180px;
    aspect-ratio: 1/1;
}

.home-body .store-image {
    width: 100%;
    max-width: 180px;
    height: auto;
}

.home-body .store-image img {
    width: 100%;
}

.home-body .require-list {
    font-size: 16px;
    color: #111111;
    letter-spacing: 0;
    font-weight: 400;
}

/* PRIVACY POLICY & Term of services */
/* Introduce Section */
.article-introduce-section {
    width: 100%;
    position: relative;
}

.article-introduce-section .introduce-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 40px 24px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .article-introduce-section .introduce-content {
        flex-direction: row;
        align-items: center;
        padding: 43px 80px 36px 0;
        overflow: unset;
    }
}

.article-introduce-section .left-side {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.article-introduce-section .signet {
    font-size: 40px;
    color: #1A8457;
    font-weight: 600;
}

@media (min-width: 576px) {
    .article-introduce-section .signet {
        font-size: 50px;
    }
}

.article-introduce-section .page-title {
    font-size: 32px;
    color: #111111;
    font-weight: 600;
}

@media (min-width: 576px) {
    .article-introduce-section .page-title {
        font-size: 50px;
    }
}

@media (min-width: 768px) {
    .article-introduce-section .signet {
        font-size: 64px;
    }

    .article-introduce-section .page-title {
        font-size: 64px;
    }
}

.article-introduce-section .right-side {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.article-introduce-section .shield-image {
    width: 100%;
    max-width: 323px;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .article-introduce-section .right-side {
        width: auto;
    }
}

.article-introduce-section .right-side::after {
    content: '';
    position: absolute;
    display: block;
    top: 38px;
    right: -79px;
    width: 520px;
    height: 520px;
    background-image: url("./assets/images/shield-gradient.png");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Policy Body */
.article-body {
    padding: 40px 16px;
    background: linear-gradient(180deg, #F5F5F5 0%, #E5F0EC 100%);
}

.article-content {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .article-content {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        padding: 64px 0;
    }
}

.article-body .left-side {
    width: 100%;
}

@media (min-width: 768px) {
    .article-body .left-side {
        width: 65%;
    }
}

.article-body .left-side>section+section {
    margin-top: 24px;
}

.article-body .left-side h3 {
    position: relative;
    font-size: 24px;
    color: #1A8457;
    letter-spacing: 0;
    font-weight: 600;
    padding-bottom: 24px;
}

@media (min-width: 576px) {
    .article-body .left-side h3 {
        font-size: 28px;
    }
}

.article-body .left-side h4 {
    position: relative;
    font-size: 20px;
    color: #1A8457;
    letter-spacing: 0;
    font-weight: 600;
    padding-bottom: 12px;
}

.article-body .left-side p {
    font-size: 16px;
    color: #111111;
    letter-spacing: 0;
    font-weight: 400;
    padding-bottom: 16px;
}

@media (min-width: 576px) {
    .article-body .left-side p {
        font-size: 18px;
    }
}

.article-body .left-side ul {
    list-style-type: disc;
}

.article-body .left-side li {
    font-size: 16px;
    color: #111111;
    letter-spacing: 0;
    font-weight: 400;
    padding-bottom: 12px;
    margin-left: 16px;
}

@media (min-width: 576px) {
    .article-body .left-side li {
        font-size: 18px;
    }
}

.article-body .left-side li>span+p {
    margin-top: 16px;
}

.article-body .left-side .mock-wrapper {
    position: relative;
}

.article-body .left-side .scroll-mock {
    position: absolute;
    top: -100px;
}

.article-body .right-side {
    width: 100%;
}

@media (min-width: 768px) {
    .article-body .right-side {
        position: sticky;
        top: 100px;
        left: 0;
        z-index: 10;
        width: 350px;
    }
}

.article-body .menu-list {
    margin-bottom: 12px;
}

.article-body .menu-list>.list-item {
    font-size: 16px;
    color: #111111;
    letter-spacing: 0;
}

@media (min-width: 576px) {
    .article-body .menu-list>.list-item {
        font-size: 18px;
    }
}

.article-body .list-item-lv1 {
    margin-bottom: 12px;
    font-weight: 600;
}

.article-body .menu-list-lv2 {
    padding-left: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.article-body .list-item-lv2 {
    margin: 12px 0;
}

.article-body .right-side ul>li>a:hover,
.article-body .right-side ul>li>ul>li>a:hover {
    color: #007aff;
}

.article-body .right-side ul>li>a::before,
.article-body .right-side ul>li>ul>li>a::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 0px;
    background: #007aff;
    margin-left: -8px;
    margin-top: 3px;
}

.article-body .right-side ul>li>a:hover::before,
.article-body .right-side ul>li>ul>li>a:hover::before {
    height: 20px;
    transition: 0.15s;
}

.article-body .right-side ul>li>a.active,
.article-body .right-side ul>li>ul>li>a.active {
    color: #007aff;
}

.article-body .right-side ul>li>a.active::before,
.article-body .right-side ul>li>ul>li>a.active::before {
    height: 20px;
    transition: 0.15s;
}