@charset "UTF-8";

/* CSS Document */
:root {
    --color-primary: #ffb627;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-grey: #222222;
    --color-grey-100: #fdf6ee;
    --color-grey-200: #a9a9a9;
    --color-grey-300: #767676;
    --font-sans-serif: 'Systemia', -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans',
        Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --font-secondary: 'Polymath Display', -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans',
        'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
        'Noto Color Emoji';
    --body-line-height: 1.2;
    --font-base: 19px;
    --font-h1: 88px;
    --transition: all 0.3s ease-in-out;
}

@font-face {
    font-family: 'Systemia';
    src: url('../fonts/Systemia-Regular.woff2') format('woff2'), url('../fonts/Systemia-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Systemia';
    src: url('../fonts/Systemia-Semibold.woff2') format('woff2'), url('../fonts/Systemia-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Systemia';
    src: url('../fonts/Systemia-Medium.woff2') format('woff2'), url('../fonts/Systemia-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Polymath Display';
    src: url('../fonts/PolymathDisp-Bold.woff2') format('woff2'), url('../fonts/PolymathDisp-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Polymath Display';
    src: url('../fonts/PolymathDisp-BoldIt.woff2') format('woff2'),
        url('../fonts/PolymathDisp-BoldIt.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

/*==============================================================
    Common Styles Initials
==============================================================*/

html {
    -webkit-text-size-adjust: none;
    /* Prevent font scaling in landscape */
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: inherit !important;
}

input[type='submit'] {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-track {
    width: 4px;
    height: 4px;
    background: var(--color-grey-100);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb {
    width: 4px;
    height: 4px;
    background: var(--color-grey);
    border-radius: 4px;
}

*,
*:after,
*:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    height: 100%;
    font-family: var(--font-sans-serif);
    font-size: var(--font-base);
    line-height: var(--body-line-height);
    color: var(--color-grey);
    background: var(--color-white);
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-grey);
    font-family: var(--font-sans-serif);
}

a:hover,
a:focus {
    outline: none;
    text-decoration: none;
}

input,
textarea,
select {
    outline: none;
    resize: none;
    font-family: var(--font-sans-serif);
}

a,
input,
button {
    outline: none !important;
    font-family: var(--font-sans-serif);
}

button::-moz-focus-inner {
    border: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-sans-serif);
    margin: 0;
    padding: 0;
    font-weight: 700;
}

img {
    border: 0;
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0;
    padding-bottom: 16px;
}

svg {
    display: block;
}

/*==============================================================
    Custom Style
==============================================================*/
.h1 {
    font-family: var(--font-secondary);
    font-size: var(--font-h1);
    /* font-size: 9.7vh; */
    line-height: 0.9;
}
.h1 em {
    font-style: italic;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-sans-serif);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    color: var(--color-grey);
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 60px;
    border: 0;
    transition: var(--transition);
}
.btn:hover {
    background: var(--color-black);
    color: var(--color-primary);
}

.topbar-wrap {
    background: var(--color-grey);
    padding: 6px 0;
    position: relative;
}
.half-animation {
    position: relative;
}
.half-animation:before,
.half-animation:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: var(--color-white);
    transition: all 500ms ease-out;
    z-index: 1;
}
.half-animation:before {
    left: 0;
}
.half-animation:after {
    right: 0;
}
.is-animate .half-animation:before,
.is-animate .half-animation:after {
    width: 0;
    visibility: hidden;
    transition-delay: 0.1s;
}
.topbar-wrap .container {
    max-width: 1167px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.topbar-wrap .topbar-close {
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    background: transparent;
    transition: var(--transition);
    border: 0;
    border-radius: 100%;
    cursor: pointer;
}
.topbar-wrap .topbar-close:hover {
    background: var(--color-white);
    color: var(--color-grey);
}
.topbar-wrap .topbar-note {
    background: conic-gradient(
        from 270deg at 50% 50%,
        #d464dc 0deg,
        #00b8a9 90deg,
        #3ace67 180deg,
        #ffb627 270deg,
        #ff6b4a 360deg
    );
    padding: 2px;
    border-radius: 24px;
}
.topbar-wrap .topbar-note .topbar-note-text {
    background: var(--color-grey);
    padding: 4px 24px;
    color: var(--color-grey-100);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    border-radius: 20px;
}
.topbar-wrap .topbar-note .topbar-note-text a {
    color: var(--color-grey-100);
    text-decoration: underline;
    transition: var(--transition);
}
.topbar-wrap .topbar-note .topbar-note-text a:hover {
    color: var(--color-primary);
}

.header-wrap {
    padding: 24px 0;
}
.header-wrap .container {
    max-width: 1167px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    overflow: hidden;
}
.logo {
    transform: translate(0, -30px);
    transition: all 0.5s ease-in;
    opacity: 0;
}
.is-animate .logo {
    transform: translate(0, 0px);
    transition-delay: 180ms;
    opacity: 1;
}
.logo a {
    display: block;
}
.header-wrap .cta {
    transform: translate(-15px, 0);
    transition: all 500ms ease-in;
    opacity: 0;
}
.is-animate .header-wrap .cta {
    transform: translate(0, 0);
    transition-delay: 260ms;
    opacity: 1;
}

.banner-wrap {
    padding: 30px 0;
}

.banner-content {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 35px;
    padding-bottom: 50px;
}

.banner-content-sub-title {
    position: relative;
    font-family: var(--font-secondary);
    font-size: 20px;
    line-height: 0.9;
    font-weight: 700;
    padding: 4px 0;
}
.is-animate .banner-content-sub-title.half-animation:before,
.is-animate .banner-content-sub-title.half-animation:after {
    transition-delay: 0.3s;
}

.banner-content-title {
    padding-bottom: 4px;
    overflow: hidden;
}
.banner-content-title .h1 {
    transform: scale(1.3);
    opacity: 0;
    transition: all 500ms ease;
}
.is-animate .banner-content-title.half-animation:before,
.is-animate .banner-content-title.half-animation:after {
    transition-delay: 0.45s;
}
.is-animate .banner-content-title .h1 {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.3s;
}

.banner-content-text {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.2;
    opacity: 0;
    transition: all 500ms ease-in;
}
.is-animate .banner-content-text {
    opacity: 1;
    transition-delay: 0.4s;
}
.banner-content-text p {
    padding-bottom: 0;
}

/* Blinking cursor animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    51% { opacity: 0; }
    100% { opacity: 0; }
}

.blinking-cursor {
    animation: blink 1s infinite;
    font-weight: inherit;
}

.banner-images {
    position: relative;
}

.banner-images-item {
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.banner-images-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    transition: all 500ms ease-out;
    z-index: 1;
}
.is-animate .banner-images-item:before {
    height: 0;
    transition-delay: 0.4s;
}
.is-animate .banner-images-item.is-left-1:before {
    transition-delay: 0.5s;
}
.is-animate .banner-images-item.is-right-1:before {
    transition-delay: 0.6s;
}
.is-animate .banner-images-item.is-left:before {
    transition-delay: 0.7s;
}
.is-animate .banner-images-item.is-right:before {
    transition-delay: 0.8s;
}
.banner-images-item:not(.is-center) {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translate(0, -50%);
}

.banner-images-item.is-center {
    margin: 0 auto;
    max-width: 43.29%;
    background: var(--color-grey);
    border-radius: 125px;
    z-index: 3;
    padding: 20px;
}
.banner-images-item.is-center img {
    transform: scale(0);
    transition: all 500ms ease-in;
}
.is-animate .banner-images-item.is-center img {
    transform: scale(1);
    transition-delay: 0.8s;
}
.banner-images-item.is-left {
    left: 0;
    max-width: 16.55%;
    border-radius: 48px;
    background: #d464dc;
}
.banner-images-item.is-left-1 {
    left: 10.59%;
    max-width: 29.8%;
    border-radius: 86px;
    background: #3ace67;
    z-index: 2;
}
.banner-images-item.is-right {
    right: 0;
    max-width: 16.55%;
    border-radius: 48px;
    background: #00b8a9;
}
.banner-images-item.is-right-1 {
    right: 10.59%;
    max-width: 29.8%;
    border-radius: 86px;
    background: #ff6b4a;
    z-index: 2;
}

.banner-images-item.is-left-bottom {
    left: 5.21%;
    max-width: 13.24%;
    border-radius: 10px;
    z-index: 2;
    top: 63.09%;
    padding: 0;
}
.banner-images-item.is-left-bottom::before,
.banner-images-item.is-top-right::before {
    display: none;
}
.banner-images-item.is-left-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(0) rotate(0deg);
    transition: all 500ms linear;
}
.is-animate .banner-images-item.is-left-bottom img {
    transform: scale(1) rotate(-15deg);
    transition-delay: 0.65s;
}

.banner-images-item.is-top-right {
    right: 5.54%;
    max-width: 8.6%;
    border-radius: 10px;
    z-index: 2;
    top: 21.03%;
    padding: 0;
}
.banner-images-item.is-top-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(0) rotate(0deg);
    transition: all 500ms linear;
}
.is-animate .banner-images-item.is-top-right img {
    transform: scale(1) rotate(15deg);
    transition-delay: 0.65s;
}

.banner-video,
.banner-video video {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    -webkit-mask-image: url(../images/video-shape.png);
    mask-image: url(../images/video-shape.png);
    mask-repeat: no-repeat;
    mask-size: 100%;
}

.patented-wrap {
    background: var(--color-grey);
    color: var(--color-white);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}
.patented-wrap .container {
    position: relative;
    z-index: 12;
}

.patented-content {
    max-width: 627px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 20px;
}
.patented-content h2 {
    font-family: var(--font-secondary);
    font-size: 40px;
    line-height: 1;
}
.patented-content p {
    padding-bottom: 8px;
    color: #fdf8f3;
    opacity: 0.7;
}
.patented-content .cta {
    padding-top: 8px;
}

.patented-wrap .patented-img {
    position: absolute;
    right: 0;
    bottom: -100px;
}

.footer-wrap {
    padding: 30px 0;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 16px;
}
.footer-wrap .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-wrap .copy {
    text-align: center;
}
