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

/* ---------------------------
   Body
--------------------------- */
body {
    font-family: 'Satoshi-Variable';
    font-size: 16px;
    line-height: 1.6;
    position: relative;
    font-weight: 400;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.lenis {
    overflow: hidden;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.bg-line img {
    position: absolute;
    /* width: 100%; */
    top: -480px;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 100%;
    z-index: -1;
}

/* ---------------------------
   Headings
--------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Morganite';
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 0.95rem;
}

/* ---------------------------
   Paragraphs
--------------------------- */
p {
    font-size: 1rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 1em;
}

/* ---------------------------
   Links
--------------------------- */
a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: #B2DF48;
    text-decoration: none;
}

a:focus {
    outline: none;
}

/* ---------------------------
   Lists
--------------------------- */
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1em;
}

li {
    line-height: 1.6;
}


/* =========================
   Header Wrapper
========================= */
.site-header {
    width: 100%;
    background: transparent;
    position: absolute;
    z-index: 100;
    padding: 25px 0;
}

/* =========================
   Logo
========================= */
.header-logo img {
    height: 40px;
    width: auto;
}

.nav-underline {
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #B2DF48, #7cff00);
    transform: scaleX(0);
    transform-origin: left;
}

/* =========================
   Navigation
========================= */
.header-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 100px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

/* underline element (GSAP animated) */
.nav-underline {
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #B2DF48, #7cff00);
    transform: scaleX(0);
    transform-origin: left;
    pointer-events: none;
}

/* Underline hover effect */
.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #B2DF48;
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: #B2DF48;
}

.nav-list a:hover::after {
    width: 100%;
}

/* =========================
   CTA Button Wrapper
========================= */
.header-cta {
    display: flex;
    align-items: center;
    position: relative;
}

/* =========================
   CTA Button Base
========================= */
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;

    padding: 12px 22px;

    font-size: 16px;
    font-weight: 700;

    color: #ffffff;
    background: transparent;

    border-radius: 50em;
    border: 1px solid #B2DF48;

    cursor: pointer;
    overflow: hidden;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-1px);
    border-color: #C8F25C;
}

/* =========================
   Icon
========================= */
.cta-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.35s ease;
}

.cta-btn:hover .cta-icon {
    transform: translateX(6px) scale(1.05);
}

/* =========================
   Mouse-follow Glow Layer
========================= */
.btn-glow-layer {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 50em;

    background: radial-gradient(120px 120px at var(--x, 50%) var(--y, 50%),
            rgba(178, 223, 72, 0.55),
            rgba(178, 223, 72, 0.25),
            transparent 60%);

    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-btn:hover .btn-glow-layer {
    opacity: 1;
}

/* =========================
   Inset Shadow Layer
========================= */
.btn-inner-shadow.mini {
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: 50em;

    box-shadow: inset 0 4px 22px #B2DF48;

    transition:
        box-shadow 0.6s ease,
        transform 0.6s ease;
}

.cta-btn:hover .btn-inner-shadow.mini {
    box-shadow:
        inset 0 0 22px rgba(178, 223, 72, 0.85),
        inset 0 0 48px rgba(178, 223, 72, 0.6),
        inset 0 0 90px rgba(178, 223, 72, 0.35);

    /* transform: translateX(6%); */
}

.cta-icon svg {
    width: 20px;
}



/* =========================
   Hero Banner Wrapper
========================= */
.hero-banner {
    color: #fff;
    width: 100%;
    padding: 120px 24px 140px;
    overflow: hidden;
}

/* =========================
   Inner Container
========================= */
.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* =========================
   Eyebrow / Strapline
========================= */
.hero-eyebrow {
    font-size: 96px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    font-family: 'Morganite';
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.hero-eyebrow span {
    line-height: 1;
}


.text-green {
    color: #B2DF48;
}

.italic {
    font-style: italic;
}


.section {
    padding: 100px 0 100px 0;
    position: relative;
}


/* =========================
   Main Heading
========================= */
.hero-title {
    font-size: clamp(72px, 12vw, 96px);
    font-weight: bold;
    line-height: 1;
    font-family: 'Satoshi-Variable';
    margin: 0 auto 40px;
    position: relative;
    max-width: 770px;
}

.dot-green {
    color: #b2df48;
}

.dot-green svg {
    position: absolute;
    bottom: 8px;
    right: -19px;
}

/* =========================
   Tool Pill Wrapper
========================= */
.tool-pill {
    display: flex;
    align-items: center;
    padding: 6px 9px 6px 35px;
    gap: 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: linear-gradient(to right, #ffffff 0%, #ffffff94 17%, #0c0c0c 26%, #00000000 41%, #0c0c0c 89%, #000000 100%);
    box-shadow: inset 0 0 19px rgb(255 255 255);
    max-width: max-content;
    margin: 0 auto;
}

/* =========================
   Left Label
========================= */
.tool-pill-label {
    /* padding: 18px 36px; */
    /* border-radius: 999px; */
    /* background: #ffffff; */
    color: #000;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Satoshi-Variable';
    /* letter-spacing: 1px; */
    white-space: nowrap;
    font-weight: 800;
}

/* =========================
   Icon Strip
========================= */
.tool-pill-icons {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 32px 0 67px;
}

/* =========================
   Individual Icons
========================= */
.tool-icon {
    font-weight: 600;

    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;

    letter-spacing: 0.5px;
    opacity: 1;

    transition: transform 0.3s ease, opacity 0.3s ease;
}

.tool-icon svg {
    width: 24px;
    height: 24px;
}

.tool-icon.ps svg {
    width: 29px;
    height: 29px;
}

.tool-icon.ai svg {
    width: 27px;
    height: 27px;
}

.tool-icon.video svg {
    width: 27px;
    height: 25px;
}

.tool-icon.js svg {
    width: 27px;
    height: 27px;
}

.tool-icon:hover {
    transform: translateY(-2px);
    opacity: 1;
}

/* =========================
   CTA Bubble
========================= */
.tool-pill-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-style: italic;
    font-family: 'Satoshi-Variable';
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1;
}

.tool-pill-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

/* =========================
   Fist Icon
========================= */
.tool-pill-cta .fist {
    font-size: 26px;
}


/* =========================
   Theme Variables
========================= */
.value-section[data-theme="dark"] {
    --bg: #000;
    --card-bg: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.12);
    --text: #fff;
    --muted: rgba(255, 255, 255, 0.7);
    --accent: #b2df48;
}

.value-section[data-theme="light"] {
    --bg: #f5f5f5;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border: rgba(0, 0, 0, 0.08);
    --text: #000;
    --muted: rgba(0, 0, 0, 0.65);
    --accent: #6fa000;
}

/* =========================
   Section Base
========================= */
.value-section {
    background: var(--bg);
}

/* =========================
   Card
========================= */
.value-card {
    position: relative;
    display: block;
    height: 100%;
    padding: 25px 25px 40px 25px;
    background: #000000;
    background: linear-gradient(52deg, rgba(0, 0, 0, 1) 0%, rgba(33, 33, 33, 1) 48%, rgba(3, 3, 3, 1) 100%, rgba(255, 255, 255, 1) 100%);
    border-radius: 30px;
    border: 3px solid transparent;
    border-image: linear-gradient(64deg, rgba(255, 255, 255, 1) 0%, rgba(41, 41, 41, 1) 100%);
    border: 1px solid var(--border);
    color: var(--text);
    transform-style: preserve-3d;
    text-decoration: none;
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    opacity: 100%;
}

.value-card:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(52deg, rgba(255, 255, 255, 1) 0%, rgba(41, 41, 41, 1) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    opacity: 13%;
}


/* =========================
   Icon
========================= */
.value-icon {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-bottom: 26px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
    border-radius: 20px;
    border-image: linear-gradient(64deg, rgba(255, 255, 255, 1) 0%, rgba(41, 41, 41, 1) 100%);
    /* gradient border */
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    /* backdrop-filter: blur(12px); */
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    /* /* opacity: 50%; */
}

.value-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(52deg, rgba(255, 255, 255, 1) 0%, rgba(41, 41, 41, 1) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    opacity: 13%;
}


/* =========================
   Text
========================= */
.value-title {
    font-size: 24px;
    font-family: 'Satoshi-Variable';
    font-weight: 700;
    margin-bottom: 14px;
    color: #fff;
}

.value-text {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 320px;
    margin-bottom: 0;
}


.value-padding {
    --bs-gutter-x: 5.5rem;
    --bs-gutter-y: 1.5rem;
}



.stack-text .stacking_text {
    color: #fff;
    font-size: 90px;
    margin-bottom: 0;
    font-weight: 800;
    font-family: 'Satoshi-Variable';
    line-height: 1;

}

.stack-text .stacking_text .neon-green {
    color: #B2DF48;
    font-size: 128px;
    font-family: 'Morganite';
    font-weight: 500;
}


.wone_portfolio .work-section {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
}


.testimonial.mini .h6 .fancy {
    font-size: 20px;
    font-family: 'Satoshi-Variable';
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
    font-style: normal !important;
}

.wone_portfolio h4 {
    font-size: 30px;
    font-family: 'Satoshi-Variable';
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
    font-style: normal !important;
}

.testimonial.mini .label-xs {
    font-family: 'Satoshi-Variable';
    font-weight: 400;
    font-size: 10px;
}



.after {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section is exactly one viewport — GSAP will pin it */
.intro {
    height: 100vh;
    background-color: #000;
    position: relative;
    overflow: hidden;
    /* clips the text entering from the right */
}

/* Hero content fills the pinned section */
.hero-content-wrapper {
    height: 50vh;
    display: flex;
    align-items: center;
}

/* Text strip anchored to bottom of pinned section */
.text-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50vh;
    display: flex;
    align-items: center;
    background-color: transparent;
}

/* Text styles — unchanged */
.reveal-text {
    font-size: 8vw;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
    color: #fff;
    font-family: 'Satoshi-Variable';
    position: relative;
}

.word {
    display: inline-block;
    margin-right: 4vw;
}

.letter {
    display: inline-block;
}

.highlight_Scroll {
    font-family: 'Morganite';
    font-style: italic;
    color: #B2DF48;
}


.wetitle {
    font-size: 96px;
    color: #000;
    font-weight: bold;
    font-family: 'Satoshi-Variable';
    text-transform: uppercase;
    line-height: 77px;

}


.wetitle .italicTitle {
    font-size: 100px;
    color: #000;
    font-weight: 400;
    font-style: italic;
    font-family: 'Morganite';
    line-height: 77px;
}


.technicalbx {
    padding: 54px 60px;
    border: 6px solid #fff;
    border-radius: 20px;
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 20px 11px #00000014;
}

/* Example — green italic to match your brand */
.word.highlight-word .letter {
    color: #B2DF48;
    font-family: 'Morganite';
    font-weight: 400;
    font-style: italic;
}

/* New */
.stackCard {
    margin-bottom: 40px;
    position: relative;
    /* needed for z-index to work */

}

.des-portfolio-wrap:nth-child(3) .stackCard {
    margin-bottom: 0px;

}


.service-card {
    background: #E9ECFF;
    border-radius: 30px;
    padding: 42px 42px 42px 70px;
    position: relative;
    z-index: inherit;
}

/* ===== Left Content ===== */
.content-wrap {
    max-width: 520px;
}

.service-title {
    font-size: 30px;
    font-weight: bold;
    font-family: 'Satoshi-Variable';
    color: #4E65E8;
    margin-bottom: 20px;
}

.service-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 30px;
    font-family: 'Satoshi-Variable';
    font-weight: 500;
    max-width: 480px;
}

.feature-row {
    margin-bottom: 20px;
}

.feature-item {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    font-family: 'Satoshi-Variable';
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}



/* ===== ORANGE THEME ===== */

.service-card.theme-orange {
    background: #EFFFCA;
}

.service-card.theme-orange .service-title {
    color: #9CD514;
}

.service-card.theme-teal .service-title {
    color: #FE4A12;
}

.service-card.theme-orange .gradient-box {
    background: #EFFFCA;
    border: 1px solid #fff;
}



.service-card.theme-orange .service-btn {
    background: #9CD514;
}


/* ===== TEAL THEME ===== */

.service-card.theme-teal {
    background: #FFE9E4;
}

.service-card.theme-teal .gradient-box {
    background: #ffe9e4;
    border: 1px solid #fff;
}


.service-card.theme-teal .service-btn {
    background: #FE4A12;
}

.des-portfolio-wrap {
    margin-top: 30px;
}

/* ===== Service Button ===== */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 14px 10px 20px;
    background: #5b6fe6;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Satoshi-Variable';
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-btn .service-btn-icon {
    line-height: 1;
}

.service-btn .service-btn-icon img {
    width: 21px;
}

.service-btn:hover {
    background: #4F65E9;
    color: #fff;
}



/* ===== Right Gradient Box ===== */
.gradient-box {
    width: 100%;
    height: 347px;
    border-radius: 40px;
    border: 1px solid #fff;
    background: #E9ECFF;
}

.custom-accord .accordion-item {
    position: relative;
    border-radius: 15px;
    margin-bottom: 30px;
    border: none;
}

.custom-accord .accordion-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(64deg, rgb(255 255 255 / 10%) 0%, rgb(255 255 255 / 5%) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

.custom-accord .accordion-item .accordian-wrapper {
    position: relative;
    border-radius: 13px;
    background: linear-gradient(64deg, rgb(0 0 0 / 0%) 0%, rgb(33 33 33 / 68%) 50%, rgb(5 5 5 / 0%) 100%);
    /* backdrop-filter: blur(11px); */
    overflow: hidden;
    z-index: 1;
}

.custom-accord h2 button {
    font-size: 22px;
    color: #fff;
    padding: 25px 33px 25px 33px;
    font-weight: 400;
    line-height: 1.2;
    transition: .3s;
    font-family: 'Satoshi-Variable';
    /* background: linear-gradient(64deg, rgba(0, 0, 0, 0.65) 0%, rgba(33, 33, 33, 0.81) 50%, rgba(0, 0, 0, 0.72) 100%, rgba(255, 255, 255, 1) 100%); */
}

.accordion {
    --bs-accordion-bg: #ffffff00;
}

.custom-accord .accordion-button:not(.collapsed) {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Satoshi-Variable';
    background-color: transparent;
    box-shadow: inset 0 0 0 transparent;
    transition: .3s;
}


.custom-accord .accordion-body {
    padding: 0px 33px 20px 0;
}

.custom-accord .accordion-button::after {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-left: auto;
    content: "";
    background-image: url(../images/plus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform .2s ease-in-out;
    background-position: center;
    border-radius: 50px;
}

.custom-accord .accordion-button:not(.collapsed)::after {
    background-image: url(../images/minus.svg);
    transform: rotate(-180deg);
    background-size: contain;
}

.FaqWrapper {
    padding: 180px 0 80px;
    background-color: #000;
}

.custom-accord .accordion-body {
    padding: 15px 33px 40px 33px;
}

.section.FaqWrapper .accordian-wrapper {
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(33, 33, 33, 1) 50%, rgba(0, 0, 0, 1) 100%, rgba(255, 255, 255, 1) 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.accordion-body p {
    margin-bottom: 0;
    max-width: 920px;
}

.wetitle .italicTitle.neon {
    color: #B2DF48;
}



.glow img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}


/* ===== Section ===== */
.coming-section {
    background-color: #000;
}

/* Outer Rounded Box */
.coming-wrapper {
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    background: #000000;
    background: linear-gradient(203deg, rgb(0 0 0 / 72%) 0%, rgb(20 29 0 / 72%) 48%, rgb(4 6 0 / 72%) 100%, rgb(63 76 31 / 72%) 100%);
}

/* Subtle Green Side Glow */
/* .coming-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(163, 255, 0, 0.15), transparent 70%);
    pointer-events: none;
} */

/* ===== Typography ===== */

.top-line {
    font-family: 'Morganite';
    font-size: 76px;
    line-height: 76px;
    color: #fff;
    margin-bottom: 0px;
    line-height: 1;
}

.main-title {
    font-family: 'Satoshi-Variable';
    font-size: 76px;
    font-weight: bold;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 20px;
}

.highlight {
    color: #a3ff00;
    font-weight: 400;
    line-height: 76px;
    font-style: italic;
}

.highlight-strong {
    color: #a3ff00;
    font-family: 'Morganite';
    font-weight: 400;
    line-height: 96px;
    font-style: italic;
}

/* ===== Button ===== */

.coming-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    border-radius: 40px;
    background: linear-gradient(90deg, #a3ff00, #5aff00);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
}

.coming-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(163, 255, 0, 0.6);
}

.btn-icon {
    background: #000;
    color: #a3ff00;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.footer-line img {
    position: absolute;
    /* width: 100%; */
    bottom: 0px;
    right: 0;
    left: 0;
    margin: 0 auto;
    opacity: 50%;
    z-index: 1;
}

/* COMING SOON HERO SECTION */
.textContent {
    text-align: start;
    position: relative;
    z-index: 2;
}

.hero-coming-soonn {
    height: 100vh;
    display: flex;
    align-items: center;
}


/* TEXT STYLES */

.small-text {
    font-size: 96px;
    margin-bottom: 0;
    font-weight: 300;
    line-height: 1;
}

.big-text {
    font-size: 96px;
    line-height: 1;
    font-family: 'Satoshi-Variable';
    font-weight: 700;
    margin-bottom: 20px;
}

.green {
    font-weight: 400;
    font-style: italic;
    font-family: 'Morganite';
    color: #B2DF48;
}




/* SplitType animation fix */

.char {
    display: inline-block;
}

.coming-soon-line img {
    position: absolute;
    top: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: contain;
}