/* === Root === */
:root {
    --white: #FFF;
    --green: #C3FB6DCC;
    --paragraph: #BDBDBD;
    --light-green: #C3FB6D;
    --gradient-color-grey: linear-gradient(90deg, #FFF 0%, #8B8B8B 100%);
    --gradient-color-green: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
}

/* === Global Styling === */
* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

.title {
    font-family: 'Poppins';
    font-size: clamp(28px, 3.3vw, 80px);
    font-weight: 600;
    margin-bottom: clamp(-30px, -1.04vw, -10px);
    background: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(3px, 0.26vw, 8px);
    height: clamp(28px, 2.08vw, 48px);
    padding: clamp(4px, 0.42vw, 10px) clamp(12px, 1.04vw, 28px);
    font-family: 'Poppins';
    font-size: clamp(11px, 0.8vw, 20px);
    font-weight: 600;
    border-radius: clamp(18px, 1.56vw, 34px);
    border: 1px solid rgba(195, 251, 109, 0.30);
    background: rgba(195, 251, 109, 0.10);
    box-shadow: 0 0 0.25rem rgba(195, 251, 109, 0.25) inset;
    background: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge img {
    width: clamp(14px, 1.04vw, 22px);
    height: clamp(14px, 1.04vw, 22px);
    aspect-ratio: 1/1;
}

.description {
    text-align: center;
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(14px, 1vw, 28px);
    font-weight: 400;
    color: #BDBDBD;
    opacity: 0.87;
    width: clamp(280px, 36.7vw, 705px);
}

.top {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 1.04vw, 32px);
}

/* === Body Styling === */
body {
    background: #07080A;
}

/* === Section Styling === */
section {
    width: 100%;
    min-height: 100dvh;
    color: white;
}

/* === Rays === */
.rays {
    background-image: url(images/rays.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* === Header Styling === */
header {
    position: absolute;
    top: clamp(12px, 2.08vw, 40px);
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(10px, 1.04vw, 20px) clamp(20px, 5.2vw, 100px);
    z-index: 1000;
}

header h1 {
    font-size: clamp(18px, 2.08vw, 42px);
    font-weight: 500;
    letter-spacing: 1.6px;
    font-family: 'Nohemi', sans-serif;
    background-clip: text;
    background: var(--gradient-color-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Buttons */
.header-right {
    gap: clamp(6px, 0.52vw, 14px);
    padding: clamp(2px, 0.26vw, 8px);
    display: flex;
    backdrop-filter: blur(5px);
}

header button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 0.52vw, 12px);
    width: clamp(80px, 6.88vw, 160px);
    height: clamp(36px, 2.08vw, 48px);
    color: #C3FB6D;
    font: 400 clamp(13px, 0.83vw, 18px) 'San Francisco', sans-serif;
    position: relative;
    border-radius: 30px;
    background: rgba(195, 251, 109, 0.10);
    box-shadow: 0px 0px 4px 0px rgba(195, 251, 109, 0.25) inset;
    cursor: pointer;
    transition: 0.2s ease;
}

.icon {
    width: clamp(16px, 1.04vw, 22px);
    height: clamp(16px, 1.04vw, 22px);
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.icon-youtube {
    width: 20px;
    height: 16px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

/* Header Buttons Hover */
header button:hover {
    color: #000;
    background: #C3FB6D;
    border-radius: 30px;
    border: 1px solid #C3FB6D;
    box-shadow: 0px 0px 24px 0px rgba(195, 251, 109, 0.45);
}

header button:hover img {
    filter: brightness(0);
}

header button::before,
header button::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 34px;
}

header button::before {
    border: 4px solid black;
    top: -4px;
    bottom: -4px;
    left: -4px;
    right: -4px;
    z-index: -1;
}

header button::after {
    border: 2px solid #C3FB6D;
    box-shadow: 0 0 20px rgba(195, 251, 109, 0.5);
    top: -6px;
    bottom: -6px;
    left: -6px;
    right: -6px;
    z-index: -2;
}

header button:hover::before,
header button:hover::after {
    opacity: 1;
}

/* === Welcome Section === */
section.welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(50px, 5.73vw, 140px);
    padding-top: clamp(40px, 5.21vw, 120px);
}

/* === Swiper === */
.scroller {
    max-width: clamp(320px, 89.6vw, 1720px);
    --edge: clamp(12px, 6vw, 120px);
}

.scroller img {
    width: clamp(240px, 41vw, 788px);
    height: auto;
}

.scroller__inner {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 1.56vw, 30px);
}

.scroller[data-animated="true"] {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction="right"] {
    --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
    --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
    --_animation-duration: 25s;
}

.scroller[data-speed="slow"] {
    --_animation-duration: 60s;
}

@keyframes scroll {
    to {
        transform: translate(calc(-50% - 0.5rem));
    }
}

/* === About Section === */
section.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(12px, 1.16vw, 20px);
    justify-content: center;
    width: clamp(100%, 100vw, 1720px);
    margin-inline: auto;
    z-index: 10;
}

.feature-wrapper {
    position: relative;
    overflow: visible;
    width: clamp(300px, 32.3vw, 555px);
    height: auto;
    padding-bottom: clamp(80px, 7.6vw, 130px);
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 1.74vw, 30px);
    padding: clamp(16px, 1.74vw, 30px);
    background-color: #0E0F11;
    color: white;
    height: clamp(260px, 21.5vw, 370px);
    width: clamp(300px, 32.3vw, 555px);
    border-radius: clamp(12px, 1.16vw, 20px);
    outline: 1px white solid;
    outline-offset: -1px;
    background: radial-gradient(127.57% 141.6% at 50% 0%, rgba(21, 21, 21, 0.60) 79.39%, rgba(195, 251, 109, 0.60) 100%);
    background-clip: padding-box;
    backdrop-filter: blur(50px);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 40%;
    background: linear-gradient(to bottom, #0E0F11, #0E0F11) top/100% 1px no-repeat, linear-gradient(to bottom, #0E0F11 0%, #0E0F11 50%, transparent 100%) left/1px 100% no-repeat, linear-gradient(to bottom, #0E0F11 0%, #0E0F11 50%, transparent 100%) right/1px 100% no-repeat, linear-gradient(to bottom, #0E0F11, #0E0F11) 0 0/30px 30px no-repeat, linear-gradient(to bottom, #0E0F11, #0E0F11) 100% 0/30px 30px no-repeat;
    pointer-events: none;
    z-index: 2;
}

.feature-card h3 {
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(20px, 1.86vw, 32px);
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: #FFF;
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(14px, 1.16vw, 20px);
    font-weight: 400;
    opacity: 0.9;
}

.feature-card img {
    width: clamp(40px, 4.2vw, 72px);
    height: clamp(40px, 4.2vw, 72px);
    aspect-ratio: 1/1;
}

.explore {
    position: absolute;
    bottom: -218px;
    left: 0;
    width: 100%;
    height: 130px;
    background: #C3FB6D;
    color: #151515;
    font: 700 32px 'San Francisco', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.explore .globe,
.explore span {
    transition: transform 0.4s ease;
}

.explore-wrapper:hover .explore .globe,
.explore-wrapper:hover .explore span {
    transform: translateX(-90px);
}

.explore img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.explore .arrow {
    width: 64px;
    height: 32px;
    position: absolute;
    right: 40px;
    top: 40%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.explore-container {
    width: 557px;
    height: 130px;
}

/* Feature Card Hover */
.feature-card:hover {
    border: 1px solid #C3FB6D;
    outline: 1px solid #C3FB6D;
    background: radial-gradient(127.57% 141.6% at 50% 0%, rgba(21, 21, 21, 0.60) 46.12%, rgba(195, 251, 109, 0.60) 100%);
    transition: all 0.4s ease;
}

.feature-wrapper:hover .explore {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.4s ease;
}

.explore-container:hover .feature-card {
    border: 1px solid #C3FB6D;
    outline: 1px solid #C3FB6D;
    background: radial-gradient(127.57% 141.6% at 50% 0%, rgba(21, 21, 21, 0.60) 46.12%, rgba(195, 251, 109, 0.60) 100%);
    transition: all 0.4s ease;
}

/* Explore Hover */
.explore-wrapper:hover .explore .globe,
.explore-wrapper:hover .explore span {
    transition: all 0.4s ease;
    transform: translateX(-90px);
}

.explore-wrapper:hover .explore .arrow {
    opacity: 1;
    transform: translateX(0);
}

.feature-wrapper:hover .explore {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* === Pricing Section === */
section.pricing {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: clamp(120px, 15vw, 220px);
    padding-bottom: clamp(40px, 6vw, 83px);
    position: relative;
    overflow: hidden;
    background-image: url('images/footer-hover.svg');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100%;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: clamp(40px, 6vw, 120px);
    gap: clamp(16px, 3vw, 60px);
}

.card {
    display: flex;
    width: clamp(280px, 26vw, 700px);
    height: clamp(360px, 30vw, 800px);
    padding: clamp(16px, 2vw, 40px);
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    border-radius: clamp(10px, 1vw, 20px);
    background: rgba(21, 21, 21, 0.60);
    box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.20) inset;
    backdrop-filter: blur(50px);
    transition: transform 0.6s ease, box-shadow 0.6s ease, border 0.6s ease, background 0.6s ease;
}

.card h2 {
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(20px, 2vw, 48px);
    font-weight: 500;
    background: linear-gradient(90deg, #FFF 0%, #8B8B8B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card h2 span {
    font-size: clamp(18px, 1.3vw, 42px);
    font-weight: 400;
    margin-left: 5px;
    background: linear-gradient(90deg, #FFF 0%, #8B8B8B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card p {
    color: rgba(255, 255, 255, 0.80);
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(14px, 1.2vw, 24px);
    font-weight: 400;
    align-self: stretch;
    opacity: 0.9;
}

.card h3 {
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(20px, 2vw, 44px);
    font-weight: 500;
    text-align: center;
    background: linear-gradient(90deg, #FFF 0%, #8B8B8B 100%);
    background-clip: text;
    -webkit-background-clip: text;
}

.feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, .5vw, 16px);
}

.card .line {
    width: clamp(60px, 6.5vw, 160px);
    height: 1px;
}

.card .dot {
    width: clamp(6px, 0.5vw, 12px);
    height: clamp(6px, 0.5vw, 12px);
    aspect-ratio: 1/1;
}

.card ul {
    padding: 0;
    margin: 0 clamp(10px, 2vw, 30px);
}

.card ul li {
    margin: clamp(10px, 2vw, 28px) 0;
    color: rgba(255, 255, 255, 0.80);
    font-family: 'San Francisco', sans-serif;
    font-size: clamp(14px, 1.3vw, 26px);
    font-weight: 100;
    opacity: 0.9;
    list-style: disc;
}

.subscribe {
    position: relative;
    z-index: 0;
    display: flex;
    height: clamp(44px, 2.8vw, 60px);
    padding: clamp(10px, 1.2vw, 18px) clamp(8px, 1vw, 14px);
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 0.8vw, 14px);
    align-self: stretch;
    border-radius: clamp(20px, 1.6vw, 32px);
    background: rgba(255, 255, 255, 0.10);
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.subscribe img {
    width: clamp(14px, 1vw, 26px);
    height: clamp(14px, 1vw, 26px);
    aspect-ratio: 1/1;
    transition: all .5s ease;
}

.subscribe span {
    font-size: clamp(14px, 1vw, 22px);
    background: linear-gradient(90deg, #FFF 0%, #8B8B8B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* === Highlighted Card === */

.featured {
    display: flex;
    width: clamp(280px, 26vw, 720px);
    height: clamp(380px, 32vw, 820px);
    padding: clamp(16px, 2vw, 40px);
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    flex-shrink: 0;
    border-radius: clamp(10px, 1vw, 20px);
    border: 1px solid #C3FB6D;
    background: radial-gradient(127.57% 141.6% at 50% 0%, rgba(21, 21, 21, 0.60) 43.31%, rgba(195, 251, 109, 0.60) 100%);
    box-shadow: 0 0 100px 0 rgba(195, 251, 109, 0.50), 0 0 80px 0 rgba(154, 255, 0, 0.50) inset;
    backdrop-filter: blur(50px);
}

.featured h2 {
    align-items: center;
    text-align: center;
}

.featured h2,
.featured h2 span {
    background: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured h3 {
    background: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured ul li {
    color: rgba(195, 251, 109, 0.80);
}

.featured .subscribe span {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
}

/* Featured Button */

.featured .subscribe {
    background: linear-gradient(180deg, #C3FB6D 0%, #8BBC41 100%);
    border: 1px solid #C3FB6D;
    box-shadow: 0 0 100px rgba(195, 251, 109, 0.50), 0 0 80px rgba(154, 255, 0, 0.50) inset;
}

.featured .subscribe img {
    filter: brightness(0);
}

.featured .subscribe::before,
.featured .subscribe::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 34px;
    opacity: 1;
    transition: opacity 0.8s ease;
    z-index: -1;
}

.featured .subscribe::before {
    border: 4px solid transparent;
}

.featured .subscribe::after {
    inset: -6px;
    border: 1px solid #C3FB6D;
    box-shadow: 0 0 20px rgba(195, 251, 109, 0.5);
}

/* Card Hover */

.card:hover {
    border-radius: 14px;
    border: 1px solid #C3FB6D;
    background: radial-gradient(127.57% 141.6% at 50% 0%, rgba(21, 21, 21, 0.60) 43.31%, rgba(195, 251, 109, 0.60) 100%);
    box-shadow: 0 0 100px 0 rgba(195, 251, 109, 0.50), 0 0 80px 0 rgba(154, 255, 0, 0.50) inset;
    backdrop-filter: blur(50px);
    transform: scale(1.03);
}

.card:hover .subscribe,
.subscribe:hover {
    border-radius: 30px;
    border: 1px solid rgba(195, 251, 109, 0.30);
    background: linear-gradient(180deg, #C3FB6D 0%, #8BBC41 100%);
}

.card:hover .subscribe span,
.subscribe:hover span {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
}

.card:hover .subscribe img,
.subscribe:hover img {
    filter: brightness(0);
    transition: all .5s ease;
}

.card:hover .subscribe::before,
.card:hover .subscribe::after,
.subscribe:hover::before,
.subscribe:hover::after {
    opacity: 1;
}

.subscribe::before,
.subscribe::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 34px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.subscribe::before {
    border: 4px solid transparent;
    z-index: -1;
}

.subscribe::after {
    inset: -6px;
    border: 1px solid #C3FB6D;
    box-shadow: 0 0 20px rgba(195, 251, 109, 0.5);
    z-index: -1;
}

.card:hover h2,
.card:hover h2 span,
.card:hover h3 {
    background: linear-gradient(90deg, #FFF 0%, #C3FB6D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card:hover ul li {
    color: rgba(195, 251, 109, 0.80);
}

.card:hover .subscribe {
    background: linear-gradient(180deg, #C3FB6D 0%, #8BBC41 100%);
    border: 1px solid #C3FB6D;
    box-shadow: 0 0 100px rgba(195, 251, 109, 0.50), 0 0 80px rgba(154, 255, 0, 0.50) inset;
}

.card:hover .subscribe span {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
}

.card:hover .subscribe img {
    filter: brightness(0);
}

.card:hover .feature .dot {
    content: url("images/dot_green.png");
}

.card:hover .feature .line {
    content: url("images/green_line.png");
}


/* === Footer === */

footer {
    border-top: 2px solid #C3FB6D;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(16px, 1.74vw, 30px) clamp(16px, 5.81vw, 100px);
    gap: clamp(8px, 0.58vw, 10px);
    align-self: stretch;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    font-family: 'San Francisco', sans-serif;
}

.footer-top h1 {
    color: #FFF;
    font-size: clamp(16px, 1.16vw, 20px);
    font-weight: 700;
}

.footer-top h4 {
    color: #FFF;
    font-size: clamp(14px, 0.93vw, 16px);
    font-weight: 400;
    opacity: 0.7;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(6px, 0.58vw, 10px);
    gap: clamp(10px, 0.93vw, 16px);
}

.email {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: clamp(260px, 24.1vw, 414px);
    padding: clamp(6px, 0.58vw, 10px);
    gap: clamp(10px, 0.93vw, 16px);
}

.email p {
    width: clamp(180px, 13.3vw, 228px);
    color: #FFF;
    font-size: clamp(14px, 0.93vw, 16px);
    font-weight: 400;
}

.email-input {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 0.47vw, 8px);
    width: 100%;
}

.email-input input {
    width: 300px;
    padding: clamp(8px, 0.58vw, 10px);
    align-items: center;
    border-radius: clamp(6px, 0.58vw, 8px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
    caret-color: #fff;
    -webkit-text-fill-color: #fff;
}

.email-input input::placeholder {
    color: #FFF;
    font-size: clamp(12px, 0.76vw, 13px);
    font-weight: 400;
    opacity: 0.5;
}

.email-input input:-webkit-autofill,
.email-input input:-webkit-autofill:hover,
.email-input input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.10) inset;
}

.email-input button {
    display: flex;
    padding: clamp(8px, 0.58vw, 10px);
    justify-content: center;
    align-items: center;
    gap: clamp(6px, 0.58vw, 10px);
    border-radius: clamp(6px, 0.58vw, 8px);
    background: #C3FB6D;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: clamp(8px, 0.58vw, 10px) 0;
    flex-wrap: wrap;
    row-gap: clamp(8px, 0.93vw, 16px);
}

.footer-bottom span {
    font-family: 'TT Firs Neue Trl', sans-serif;
    color: #808080;
    text-align: center;
    font-size: clamp(12px, 0.81vw, 14px);
    font-weight: 400;
}

.footer-bottom .socials {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(6px, 0.58vw, 10px);
    gap: clamp(16px, 2.91vw, 50px);
}

.footer-bottom img {
    width: clamp(18px, 1.40vw, 24px);
    height: clamp(18px, 1.40vw, 24px);
    cursor: pointer;
}

.socials .discord {
    width: clamp(16px, 1.16vw, 20px);
    height: clamp(12px, 0.87vw, 15px);
}

.socials .tebex {
    width: clamp(8px, 0.52vw, 9px);
    height: clamp(16px, 1.16vw, 20px);
}



/* === Loader === */

.logo.pulse {
    animation: pulse 1.6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.06);
        opacity: 0.95;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo.pulse {
        animation: none;
    }
}


.reveal-rect {
    animation: fillUp 1.8s ease-out forwards;
}

@keyframes fillUp {
    from {
        y: 147;
        height: 0;
    }

    to {
        y: 0;
        height: 147;
    }
}

.green-fill.play {
    animation-play-state: running;
}

.loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 99999;
    background: #07080A;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-direction: column;
}

.loader__label {
    font-size: .9rem;
    letter-spacing: .08em;
    opacity: .7;
    color: #F4F6F8
}

.green-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #C3FB6D;
    z-index: -1;
    animation: greenScreen 0.6s ease forwards;
    animation-play-state: paused;
}

@keyframes greenScreen {
    to {
        height: 100%;
    }
}

.page-wipe {
    position: fixed;
    inset: 0;
    background: #C3FB6D;
    z-index: 99998;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(0);
}

.page-wipe.run {
    visibility: visible;
    animation: pageReveal .35s ease-out forwards;
}

@keyframes pageReveal {
    to {
        transform: translateY(-100%);
    }
}

/* === Scroll Bars === */

html,
body {
    width: 100%;
    overflow-x: hidden;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

/* === MEDIA QUERIES === */

@media (min-width: 600px) and (max-width: 1024.98px) {

    .title {
        font-size: 50px;
    }

    .features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(10px, 2vw, 20px);
        width: min(94vw, 1024px);
        margin-inline: auto;
    }

    .feature-wrapper,
    .explore-container,
    .feature-card {
        width: 100%;
    }

    .feature-card {
        height: 310px;
        padding: clamp(12px, 2.2vw, 24px);
        border-radius: clamp(10px, 2vw, 16px);
        outline-offset: -1px;
        cursor: pointer;
    }

    .feature-card img {
        width: clamp(36px, 4vw, 56px);
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .feature-card h3 {
        font-size: clamp(16px, 2.2vw, 24px);
        line-height: 1.2;
    }

    .feature-card p {
        font-size: clamp(12px, 1.6vw, 16px);
        line-height: 1.5;
    }

    .explore {
        display: none !important;
    }

    .card.featured h2 span {
        font-size: 15px;
    }
}

/* ===== Small tablets ===== */

@media (min-width: 600px) and (max-width: 910px) {

    .title {
        font-size: 50px;
    }

    .pricing .cards {
        display: flex;
        flex-direction: column;
        gap: clamp(12px, 3vw, 20px);
        overflow: visible;
    }

    .explore {
        display: none !important;
    }

    .feature-card:hover {
        border: none;
        outline: none;
        background: #0E0F11;
        box-shadow: none;
    }

    .feature-wrapper:hover .explore {
        display: none !important;
    }

}

/* ===== Mobile ===== */

@media (max-width: 599.98px) {

    .title {
        font-size: 33px;
    }

    header button {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
        font-size: 0;
    }

    header button .icon {
        width: 18px;
        height: 18px;
    }

    header button::before,
    header button::after {
        border-radius: 50%;
    }

    .features {
        display: flex;
        flex-direction: column;
        gap: clamp(30px, 4vw, 18px);
        width: 92vw;
        margin-inline: auto;
    }

    .feature-wrapper,
    .explore-container,
    .feature-card {
        width: 100%;
    }

    .feature-card {
        height: auto;
        padding: clamp(12px, 4vw, 16px);
        border-radius: clamp(10px, 4vw, 14px);
    }

    .feature-card img {
        width: clamp(28px, 9vw, 44px);
        height: auto;
    }

    .feature-card h3 {
        font-size: clamp(16px, 5vw, 20px);
        line-height: 1.2;
    }

    .feature-card p {
        font-size: clamp(12px, 4vw, 15px);
        line-height: 1.5;
    }

    .explore {
        display: none !important;
    }

    .cards .card ul {
        margin-left: 20px;
    }

    .cards .card .subscribe {
        height: 33px;
    }

    .pricing .cards {
        display: flex;
        flex-direction: column;
        gap: clamp(12px, 4vw, 20px);
        overflow: visible;
    }

    .explore {
        display: none !important;
    }

    .feature-card:hover {
        border: none;
        outline: none;
        background: #0E0F11;
        box-shadow: none;
    }

    .feature-wrapper:hover .explore {
        display: none !important;
    }

    .card:hover,
    .card:active {
        transform: scale(1.01);
    }

}

/* === FOOTER === */

@media (max-width: 900px) {

    .footer-top {
        display: grid;
        grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr);
        column-gap: 16px;
        width: 100%;
    }

    .section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-width: 0;
        padding: 0;
        gap: 10px;
    }

    .email {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        align-items: center;
    }

    .email-input {
        width: 60%;
        gap: clamp(8px, 1.6vw, 14px);
    }

    .email-input input {
        width: min(100%, 420px);
        flex: 1 1 auto;
    }

}

/* === FOOTER === */
@media (max-width: 520px) {
    footer {
        padding: 16px 14px;
        border-top-width: 1px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr);
        column-gap: 16px;
        width: 100%;
    }

    .section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-width: 0;
        padding: 0;
        gap: 10px;
        margin-bottom: 20px;
    }

    .email {
        grid-column: 1 / -1;
        width: 100%;
        min-width: 0;
        padding: 0;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .email p {
        width: 100%;
        font-size: 14px;
        line-height: 1.45;
        opacity: 0.85;
    }

    .email-input {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .email-input input,
    .email-input button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border-radius: 8px;
    }

    /* bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding-top: 10px;
    }

    .footer-bottom span {
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-bottom .socials {
        padding: 6px 0;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom img {
        width: 22px;
        height: 22px;
    }

    .socials .discord {
        width: 18px;
        height: 14px;
    }

    .socials .tebex {
        width: 9px;
        height: 18px;
    }
}