/* =========================================================
ROOT VARIABLES
Global colors, gradients, spacing and shadows
========================================================= */
:root {
--navy: #02253d;
--navy-dark: #001722;
--ink: #02253d;
--white: #ffffff;
--gray: #9fa4a8;
--aqua: #02bcdd;
--cyan: #06d1e5;
--mint: #64eda8;
--lime: #d0f88d;

/* Main gradient */
--top-gradient: linear-gradient(
62deg,
#02bcdd,
#06d1e5,
#64eda8,
#d0f88d
);

/* Text gradient */
--script-gradient: linear-gradient(
90deg,
#02bcdd 0%,
#06d1e5 30%,
#64eda8 65%,
#d0f88d 100%
);

/* Card shadows */
--shadow:
inset -2px -2px 4px 2px rgba(0, 0, 0, 0.3),
0 10px 18px rgba(0, 0, 0, 0.28);

--soft-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);

/* Layout spacing */
--page-pad: 48px;
--section-y: 110px;
--footer-space: 58px;
}

/* =========================================================
CUSTOM FONT : UHUDSCRIPT
Used for handwritten CTA button styling
========================================================= */
@font-face {
font-family: "Uhudscript";
src: url("/-global-assets/fonts/Uhudscript-Demo.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;
}

/* =========================================================
CUSTOM FONT : BAHAGIA
========================================================= */
@font-face {
font-family: 'Bahagia';
src: url('/-global-assets/fonts/Bahagia.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}

/* =========================================================
CUSTOM FONT : GALANO REGULAR
========================================================= */
@font-face {
font-family: 'Galano';
src: url('/-global-assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
font-weight: 300;
font-style: normal;
font-display: swap;
}

/* =========================================================
CUSTOM FONT : GALANO MEDIUM
========================================================= */
@font-face {
font-family: 'Galano';
src: url('/-global-assets/fonts/GalanoGrotesque-Medium.ttf') format('truetype');
font-weight: 400;
font-style: normal;
font-display: swap;
}

/* =========================================================
CUSTOM FONT : GALANO BOLD
========================================================= */
@font-face {
font-family: 'Galano';
src: url('/-global-assets/fonts/GalanoGrotesqueDEMO-Bold.ttf') format('truetype');
font-weight: 500;
font-style: normal;
font-display: swap;
}

/* =========================================================
GLOBAL RESET
========================================================= */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* =========================================================
HTML + BODY
========================================================= */
html,
body {
width: 100%;
min-height: 100%;
}

/* =========================================================
BODY STYLING
========================================================= */
body.system-page.explore-page {
font-family: 'Galano', sans-serif;
color: var(--white);
background: #000;
overflow-x: hidden;
}

/* =========================================================
GLOBAL LINK RESET
========================================================= */
a {
color: inherit;
text-decoration: none;
}

/* =========================================================
IMAGE RESET
========================================================= */
img {
display: block;
max-width: 100%;
}

/* =========================================================
SCREEN READER ONLY TEXT
========================================================= */
.sr-only {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
}

/* =========================================================
BAHAGIA FONT UTILITY CLASS
========================================================= */
.bahagia-text {
font-family: 'Bahagia', cursive;
font-weight: 400;
letter-spacing: 0;
}

/* =========================================================
Uhudscript FONT UTILITY CLASS
========================================================= */
.uhudscript-text {
font-family: 'Uhudscript', cursive;
}

/* =========================================================
MAIN PAGE WRAPPER
========================================================= */
.explore-main {
position: relative;
z-index: 1;
background: #000;
overflow: visible;
}

/* =========================================================
SECTION BASE
========================================================= */
.sec {
position: relative;
width: 100%;
padding-left: 0;
padding-right: 0;
}

/* =========================================================
HERO SECTION
========================================================= */
.hero-sec {
height: 100dvh;
min-height: 820px;
overflow: hidden;
background: #000;
}

/* Hero content wrapper */
.hero-words {
position: relative;
z-index: 4;
width: 100%;
max-width: 1120px;
margin: 0 auto;
padding-top: 120px;
text-align: center;
}

/* Hero script text */
.hero-script {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 22px;
font-family: 'Bahagia', sans-serif;
font-size: 102px;
font-style: italic;
white-space: nowrap;
background: var(--script-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Paper plane image */
.paper-plane {
width: 50px;
transform: translateY(-3px);
}

/* Hero title */
.hero-title {
margin-top: 10px;
display: grid;
gap: 34px;
font-size: 62px;
line-height: 0.75;
font-weight: 600;
font-style: normal;
color: var(--white);
text-transform: uppercase;
}

/* Hero title Accent */
.hero-title-accent {
font-style: normal;
color: #efefef;
}

/* Hero description line */
.hero-line {
margin-top: 40px;
font-size: 26px;
line-height: 1.25;
font-weight: 300;
font-style: normal;
letter-spacing: 1.25 !important;
color: #EFEFEF;
}

/* =========================================================
LAUNCH SECTION
========================================================= */
.launch-sec {
position: relative;
padding-top: 44px;
padding-bottom: 0;
overflow: visible;
background: #000;
height: 1000px;
z-index: 3;
}

/* Launch wrapper */
.launch-box {
position: relative;
width: 100%;
max-width: 100%;
height: 1000px;
margin: 0 auto;
overflow: visible;
pointer-events: none;
}

/* Cloud base image */
.cloud-img {
position: absolute;
left: 50%;
max-width: none;
transform: translateX(-50%);
pointer-events: none;
}

/* Bottom cloud */
.cloud-bottom {
bottom: 450px;
width: 100%;
height: auto;
z-index: 1;
}

/* Tablet image */
.tablet-img {
position: absolute;
left: 50%;
top: -160px;
width: 1350px;
height: auto;
max-width: none;
transform: translateX(-50%);
z-index: 2;
filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.36));
}

/* Rocket image */
.rocket-img {
position: absolute;
left: 50%;
top: -340px;
width: 520px;
height: auto;
transform: translateX(-50%);
z-index: 4;
transition:
transform 1.35s cubic-bezier(0.18, 0.78, 0.2, 1),
opacity 0.45s ease;
will-change: transform, opacity;
}

/* Rocket launch animation */
.rocket-img.is-launched,
.launch-sec.is-rocket-launched .rocket-img {
transform: translate(-50%, -760px) scale(0.82);
opacity: 0;
}

/* Top cloud */
.cloud-top {
bottom: 20px;
width: 100%;
height: auto;
z-index: 3;
}

/* Mobile launch image */
.phone-launch {
display: none;
}

/* =========================================================
STORY SECTION
========================================================= */
.story-sec {
min-height: 920px;
padding-top: 28px;
padding-bottom: var(--section-y);
color: var(--ink);
/*background: linear-gradient(180deg, #ffffff 0%, #dff8f3 80%, #a8f0e6 90%, #6dd8f5 100%);*/
 background: linear-gradient(
        180deg,
        #ffffff 0%,
        #dff8f3 45%,
        #a8f0e6 75%,
        #6dd8f5 100%
    );
}

/* Story content wrapper */
.story-wrap {
width: 100%;
max-width: 960px;
margin: 0 auto;
display: grid;
gap: 95px;
text-align: center;
}

/* Story content bytterfly */
.story-butterfly {
position: absolute;
width: 30px;
opacity: 1.0;
z-index: 2;
animation: butterflyFloat 3.4s ease-in-out infinite;
pointer-events: none;
}

.story-butterfly-left {
left: 6%;
top: 120px;
}

.story-butterfly-right {
right: 6%;
top: 300px;
animation-delay: -1.4s;
}

.story-butterfly-bottom-left {
left: 10%;
bottom: 200px;
animation-delay: -0.8s;
}

.story-butterfly-bottom-right {
right: 10%;
bottom: 120px;
animation-delay: -2.2s;
}

/* Individual story text block */
.story-part {
display: grid;
gap: 10px;
font-size: 30px;
line-height: 1.24;
font-weight: 300;
color: var(--ink);
}

/* Script-style story text */
.story-script {
font-size: 64px;
line-height: 1.28;
background: var(--script-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.story-script .emoji {
-webkit-text-fill-color: unset;
background: unset;
background-clip: unset;
-webkit-background-clip: unset;
font-size: 32px;
}

/* Bold story text */
.story-bold {
color: var(--ink);
font-weight: 300;
}

/* =========================================================
PATH / CARDS SECTION
========================================================= */
.path-sec {
padding-top: 100px;
padding-bottom: 100px;
/*padding-bottom: var(--section-y);*/
color: var(--ink);
/*background: linear-gradient(180deg, #6dd8f5 0%, #a8f0e6 10%, #dff8f3 20%, #ffffff 100%);*/
    background: linear-gradient(
        180deg,
        #6dd8f5 0%,
        #a8f0e6 25%,
        #dff8f3 55%,
        #ffffff 100%
    );
}

/* Cards section wrapper */
.path-wrap {
width: 100%;
max-width: 1120px;
margin: 0 auto;
text-align: center;
}

/* Section title */
.path-title {
margin-bottom: 20px;
font-size: 44px;
line-height: 1.14;
font-weight: 500;
}

/* Bahagia text inside path title */
.path-title .bahagia-text {
display: inline-block;
margin-left: 8px;
font-size: 56px;
line-height: 0.7;
color: var(--ink);
}

/* Cards grid */
.cards {
width: 100%;
max-width: 1060px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 46px 54px;
perspective: 1200px;
}

/* Individual card link */
.path-card {
display: block;
min-height: 320px;
border-radius: 22px;
perspective: 1200px;
}

/* Inner flipping card container */
.card-in {
position: relative;
display: block;
width: 100%;
height: 100%;
border-radius: inherit;
transform-style: preserve-3d;
transition: transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Flip card on hover, focus, or active class */
.path-card:hover .card-in,
.path-card:focus-visible .card-in,
.path-card.is-flipped .card-in {
transform: rotateY(180deg);
}

/* Shared card side styles */
.card-side {
position: absolute;
inset: 0;
display: flex;
overflow: hidden;
border-radius: inherit;
box-shadow: var(--shadow);
backface-visibility: hidden;
}

/* Front side of card */
.card-front {
align-items: flex-end;
justify-content: center;
background: var(--navy);
}

/* Card front image */
.card-front img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: contain;
}

/* Card title strip */
.card-title {
position: relative;
z-index: 2;
width: 100%;
min-height: 60px;
display: grid;
place-items: center;
padding: 10px 16px;
font-size: 18px;
line-height: 1.08;
font-weight: 500;
text-transform: uppercase;
color: var(--ink);
background: var(--top-gradient);
}

/* Back side of card */
.card-back {
transform: rotateY(180deg);
flex-direction: column;
justify-content: flex-start;
padding: 34px 30px 26px;
text-align: left;
color: var(--navy);
background: linear-gradient(145deg, #d0f88d 0%, #64eda8 40%, #02bcdd 100%);
}

/* Card back description */
.card-desc {
max-width: 92%;
font-size: 23px;
line-height: 1.3;
font-weight: 350;
}

/* Card back handwritten text */
.card-more {
position: absolute;
left: 30px;
bottom: 30px;
font-size: 34px;
line-height: 1;
color: var(--white);
}

/* Card action area */
.card-go {
position: absolute;
right: 24px;
bottom: 22px;
display: flex;
align-items: center;
gap: 16px;
}

/* Card small graphic */
.card-go img:first-child {
width: 70px;
filter: brightness(0) invert(1);
}

/* Card next arrow button */
.card-next {
width: 54px;
height: 54px;
border-radius: 50%;
filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.25));
}

/* Note below cards */
.path-note {
margin-top: 18px;
margin-bottom: 70px;
font-size: 58px;
line-height: 1.35;
font-weight: 500;
background: var(--script-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* =========================================================
JOIN SECTION
========================================================= */
.join-sec {
padding-top: var(--section-y);
padding-bottom: 60px;
background: linear-gradient(180deg, var(--white) 0%, var(--white) 76%, var(--navy-dark) 76%, var(--navy-dark) 100%);
overflow: visible;
}

/* Join white panel */
.join-panel {
position: relative;
min-height: 670px;
overflow: visible;
color: var(--ink);
background: var(--white);
border-radius: 0 0 50px 50px;
box-shadow: inset 0 -12px 20px rgba(0, 0, 0, 0.12);
}

/* Rainbow illustration */
.rainbow-img {
position: absolute;
left: 50%;
bottom: 50px;
width: 100%;
max-width: 118vw;
transform: translateX(-50%);
pointer-events: none;
}

/* Join text container */
.join-box {
position: relative;
z-index: 2;
width: 100%;
max-width: 760px;
margin: 0 auto;
padding-top: 275px;
text-align: center;
}

/* Join intro text */
.join-text {
margin-bottom: 28px;
margin-top: 28px;
font-size: 18px;
line-height: 1.25;
font-weight: 300;
color: var(--ink);
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0;
}

/* Join heading */
.join-title {
margin-bottom: 28px;
font-size: 72px;
line-height: 1.3;
font-weight: 500;
color: var(--ink);
-webkit-text-fill-color: var(--ink);
background: none;
}

/* Script text inside join title */
.join-title .bahagia-text {
display: inline-block;
font-size: 65px;
line-height: 1.25;
}

.join-title-gradient {
background: var(--script-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Email form wrapper */
.email-form {
width: 100%;
max-width: 720px;
min-height: 58px;
margin: 0 auto;
padding: 6px;
display: flex;
align-items: center;
gap: 8px;
border-radius: 999px;
background: var(--white);
box-shadow:
inset 0 2px 6px rgba(0, 0, 0, 0.18),
0 2px 7px rgba(0, 0, 0, 0.12);
}

/* Email input */
.email-form input {
flex: 1;
min-width: 0;
height: 44px;
padding: 0 18px;
border: 0;
outline: 0;
border-radius: 999px;
font-family: 'Galano', sans-serif;
font-size: 14px;
color: var(--ink);
background: transparent;
}

/* Email input placeholder */
.email-form input::placeholder {
color: rgba(2, 37, 61, 0.34);
}

/* Email form button */
.email-form button {
height: 36px;
min-width: 132px;
padding: 0 22px;
border: 0;
border-radius: 999px;
font-family: 'Galano', sans-serif;
font-size: 13px;
font-weight: 500;
text-transform: uppercase;
color: var(--ink);
background: var(--mint);
cursor: pointer;
box-shadow: var(--soft-shadow);
}

/* =========================================================
FLOATING BUTTERFLIES
========================================================= */

/* Shared butterfly styling */
.butterfly {
position: absolute;
z-index: 3;

width: 54px;

animation: butterflyFloat 3.4s ease-in-out infinite;

pointer-events: none;
}

/* Left butterfly position */
.butterfly-left {
left: 8%;
top: 180px;
}

/* Right butterfly position */
.butterfly-right {
right: 7%;
top: 260px;

animation-delay: -1.4s;
}

/* =========================================================
LOGO PILL
========================================================= */

/* Floating logo container */
.logo-pill {
position: absolute;
left: 50%;
bottom: -48px;
z-index: 10;
width: 480px;
min-height: 120px;
padding: 14px 32px;
transform: translateX(-50%);
display: grid;
place-items: center;
border-radius: 999px;
background: var(--white);
box-shadow: var(--shadow);
}

/* Logo image */
.logo-img {
width: 360px;
height: auto;
}

/* =========================================================
BUTTERFLY FLOAT ANIMATION
========================================================= */

@keyframes butterflyFloat {

0%,
100% {
transform: translate3d(0, 0, 0) rotate(-8deg);
}

50% {
transform: translate3d(8px, -14px, 0) rotate(9deg);
}
}

/* =========================================================
THANK YOU SECTION
========================================================= */

/* Final thank you section */
.thanks-sec {
min-height: 80vh;
padding-top: 140px;
padding-bottom: 140px;
display: grid;
place-items: center;
color: var(--white);
background: linear-gradient(
180deg,
var(--navy-dark) 0%,
var(--navy) 100%
);
text-align: center;
}

/* Thank you content wrapper */
.thanks-box {
width: 100%;
max-width: 900px;
display: grid;
gap: 18px;
font-size: 32px;
line-height: 0.90;
font-weight: 400;
}

/* Gradient thank you line */
.thanks-line {
margin-top: 10px;
font-size: 64px;
line-height: 1.25;
background: var(--script-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;    
}

/* =========================================================
TABLET RESPONSIVE STYLES
========================================================= */

@media (min-width: 768px) and (max-width: 1024px)  {

.hero-sec {
    height: 10dvh;
    min-height: 820px;
    overflow: hidden;
    /*background: var(--navy);*/
    padding: 30px;
}

/* Hero content */
.hero-words {
padding-top: 130px;
}

/* Script heading */
.hero-script {
font-size: 72px;
}

/* Paper plane icon */
.paper-plane {
width: 42px;
}

/* Hero title */
.hero-title {
margin-top: 34px;
font-size: 40px;
gap: 16px;
line-height: 2.5rem;
}

/* Hero subtitle */
.hero-line {
margin-top: 38px;
font-size: 22px;
}

/* Tablet image */
.tablet-img {
width: 860px;
max-width: 92vw;
}

/* Rocket image */
.rocket-img {
width: 230px;
}

.launch-sec {
position: relative;
padding-top: 44px;
padding-bottom: 0;
height: 680px;
}

/* Launch container */
.launch-box {
height: 680px;
}

/* Story paragraph */
.story-part {
font-size: 26px;
}

/* Story script text */
.story-script {
font-size: 40px;
}

/* Cards grid */
.cards {
max-width: 840px;
gap: 28px;
}

/* Individual card */
.path-card {
min-height: 270px;
}

/* Card title */
.card-title {
font-size: 15px;
}

/* Card description */
.card-desc {
font-size: 19px;
}

/* Join panel */
.join-panel {
min-height: 600px;
}

/* Join box */
.join-box {
padding-top: 245px;
}

.cloud-bottom {
    bottom: 250px;
}

.path-sec {
    padding-left: 30px;
    padding-right: 30px;
}
}
/* =========================================================
MOBILE RESPONSIVE STYLES
========================================================= */

@media (max-width: 767px) {
    
    
.path-sec {
    padding-top: 50px;
    padding-bottom: 100px;
}
    
.logo-img {
width: 260px;
padding-top: 8px;
height: auto;
}

/* Hero section height */
.hero-sec {
min-height: 140px;
height:auto;
padding: 30px;
}


/* Hero handwritten text */
.hero-script {
gap: 9px;
font-size: 48px;
}

/* Paper plane icon */
.paper-plane {
width: 30px;
}

/* Hero title */
.hero-title {
margin-top: 24px;
gap: 0;

font-size: 31px;
line-height: 1.08;
}

/* Hero description */
.hero-line {
margin-top: 35px;
font-size: 12px;
line-height: 1.5;
}

/* Launch section */
.launch-sec {
height: 750px;
padding-top: 0;
}

/* Hide desktop launch graphics */
.launch-box {
display: none;
}

/* Mobile launch image */
.phone-launch {
position: absolute;
left: 50%;
bottom: -2%;
display: block;
width: 100%;
max-width: 122vw;
transform: translateX(-50%);
pointer-events: none;
}

/* Mobile rocket image */
.phone-rocket {
width: 100%;
max-width: none;
}

/* Story section wrapper */
.story-wrap {
gap: 46px;
}

/* Story text */
.story-part {
gap: 8px;

font-size: 21px;
line-height: 1.32;
}

.story-sec {
    padding: 30px;
}

/* Story script font */
.story-script {
font-size: 33px;
}

/* Path section title */
.path-title {
max-width: 280px;
margin: 0 auto 28px;
font-size: 30px;
line-height: 1.34;
}

/* Bahagia word in title */
.path-title .bahagia-text {
display: block;
margin: 4px 0 0;
font-size: 46px;
line-height: 0.8;
}

/* Cards become single column */
.cards {
grid-template-columns: 1fr;
gap: 22px;
perspective: none;
padding: 30px;
}

/* Individual card */
.path-card {
min-height: 308px;
border-radius: 14px;
background: var(--navy);
box-shadow: var(--shadow);
}

/* Disable 3D flip effect */
.card-in,
.path-card:hover .card-in,
.path-card:focus-visible .card-in,
.path-card.is-flipped .card-in {
height: 100%;

transform: none;
transform-style: flat;
}

/* Card side reset */
.card-side {
position: static;
box-shadow: none;
backface-visibility: visible;
}

/* Front side */
.card-front {
display: block;
padding: 20px 20px 0;
background: transparent;
}

/* Front image */
.card-front img {
position: static;
width: 100%;
/*height: 116px;*/
object-fit: cover;
border-radius: 10px;
}

/* Card title */
.card-title {
display: block;
min-height: 0;
padding: 17px 0 0;
text-align: left;
font-size: 18px;
color: var(--white);
background: transparent;
}

/* Card back */
.card-back {
position: relative;
transform: none;
display: block;
min-height: 150px;
padding: 12px 20px 24px;
color: var(--white);
background: transparent;
}

/* Card description */
.card-desc {
max-width: 92%;
font-size: 16px;
line-height: 1.34;
}

/* Hide handwritten text */
.card-more {
display: none;
}

/* Card action area */
.card-go {
right: 20px;
bottom: 22px;
}

/* Hide first action image */
.card-go img:first-child {
display: none;
}

/* Small arrow button */
.card-next {
width: 28px;
height: 28px;
}

/* Path note */
.path-note {
margin-top: 28px;
font-size: 14px;
}

/* Join panel */
.join-panel {
min-height: 450px;
border-radius: 0 0 0px 0px;
padding: 10px;
}

/* Rainbow image */
.rainbow-img {
    top: 24px;
    bottom: auto;
    width: 100%;
    max-width: 100%;
}

/* Join box spacing */
.join-box {
padding-top: 140px;
}

/* Hide intro text */
.join-text {
display: none;
}

/* Join title */
.join-title {
margin-bottom: 26px;
font-size: 40px;
}

/* Script text in title */
.join-title .bahagia-text {
display: block;
font-size: 52px;
}

/* Email form layout */
.email-form {
display: grid;
gap: 12px;
padding: 0;
background: transparent;
box-shadow: none;
}

/* Input + button */
.email-form input,
.email-form button {
width: 100%;
height: 38px;
border-radius: 999px;
}

/* Email input */
.email-form input {
background: var(--white);
box-shadow:
inset 0 2px 6px rgba(0, 0, 0, 0.18),
0 2px 7px rgba(0, 0, 0, 0.12);
}

/* Email button */
.email-form button {
min-width: 0;
font-size: 13px;
}

/* Butterfly size */
.butterfly {
width: 32px;
}

/* Left butterfly */
.butterfly-left {
left: 18%;
top: 20%;
}

/* Right butterfly */
.butterfly-right {
right: 12%;
top: 52px;
}


.logo-pill {
    position: absolute;
    left: 50%;
    bottom: -15%;
    z-index: 10;
    width: 100%;
    min-height: 120px;
    padding: 14px 42px;
    transform: translateX(-50%);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--white);
    box-shadow: var(--shadow);

}

/* Thank you section */
.thanks-sec {
padding-top: 140px;
padding-bottom: 140px;
padding-left: 30px;
padding-right: 30px;
}

/* Thank you content */
.thanks-box {
font-size: 25px;
line-height: 1.22;
gap: 6px;
}

/* Gradient thank you text */
.thanks-line {
margin-top: 18px;
font-size: 36px;
}
}

/* =========================================================
EXTRA SMALL MOBILE DEVICES
========================================================= */

@media (max-width: 390px) {

/* Hero section */
.hero-sec {
min-height: 100%;
}

/* Script title */
.hero-script {
font-size: 43px;
}

/* Main title */
.hero-title {
font-size: 29px;
}

/* Subtitle */
.hero-line {
font-size: 12px;
}

/* Mobile launch image */
.phone-launch {
width: 100%;
max-width: 118vw;
bottom: -1%;
}

/* Story text */
.story-part {
font-size: 20px;
}

/* Story script */
.story-script {
font-size: 30px;
}

/* Card */
.path-card {
min-height: 292px;
}


/* Join section spacing */
.join-box {
padding-top: 154px;
}

/* Thank you text */
.thanks-box {
font-size: 23px;
}

/* Gradient thank you line */
.thanks-line {
font-size: 34px;
}
}

/* Explore page overflow fix */
body.system-page.explore-page,
body.system-page.explore-page html {
    overflow-x: clip !important;
}

body.system-page.explore-page .explore-main {
    overflow-x: clip !important;
}

/* Prevent oversized decorative elements from creating page width */
body.system-page.explore-page .phone-launch,
body.system-page.explore-page .rainbow-img,
body.system-page.explore-page .tablet-img,
body.system-page.explore-page .rocket-img,
body.system-page.explore-page .cloud-img {
    max-width: 100vw;
}


@media screen and (width: 540px) and (height: 720px) {
    .launch-sec {
        height: 1000px;
        padding-top: 0;
    }
}