@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: Poppins, sans-serif;
    color: #fff;
    background: linear-gradient(360deg, #1784c7, #000);
    font-size: 16px;
    line-height: 1;
    min-height: 100vh;
    overflow-x: hidden;
}

#root {
    display: flex;
    flex-direction: column;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.scroll-lock {
    overflow: hidden;
}

.app {
    width: 100%;
    min-height: 100vh;
}

.background-wrapper {
    display: flex;
    flex-direction: column;
    background: url(/images/background.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

@media (max-width: 1366px) {
    .background-wrapper {
        background: url(/images/mobile-background.png);
        background-position: top center;
        background-repeat: repeat;
        background-size: cover;
    }
}

.main-content {
    flex: 1;
}

@media (max-width: 900px) {
    .main-content { overflow: hidden; }
}

/* ===== HEADER ===== */
._header_1tak2_1 {
    padding: 40px 0;
    position: relative;
    z-index: 100;
}

@media (max-width: 1200px) {
    ._header_1tak2_1 { padding: 20px 0; }
}

._container_1tak2_13 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    ._container_1tak2_13 { padding: 0 20px; }
}

._mobileHeader_1tak2_26 { display: none; }

@media (max-width: 1200px) {
    ._mobileHeader_1tak2_26 { display: block; }
}

._mobileNav_1tak2_36 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

._menuButton_1tak2_42 {
    background: transparent;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, transform 0.1s ease;
    min-width: 44px;
    min-height: 44px;
}

._menuButton_1tak2_42:hover { background-color: rgba(255,255,255,0.1); }
._menuButton_1tak2_42:active { transform: scale(0.95); background-color: rgba(255,255,255,0.15); }

._desktopHeader_1tak2_64 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    ._desktopHeader_1tak2_64 { display: none; }
}

._logo_1tak2_76 {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

._logo_1tak2_76 img { display: block; }

._nav_1tak2_86 {
    flex: 1;
    display: flex;
    justify-content: center;
}

._navLinks_1tak2_92 {
    display: flex;
    align-items: center;
    gap: 40px;
}

._navLinks_1tak2_92 li a {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

._navLinks_1tak2_92 li a:hover { opacity: 0.8; }

._headerRight_1tak2_110 {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

._langButton_1tak2_117 {
    display: flex;
    gap: 8px;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    padding: 8px 4px;
}

._langButton_1tak2_117 svg { transition: transform 0.3s ease; }
._langButton_1tak2_117:hover svg { transform: translateY(2px); }

._socialLinks_1tak2_136 {
    display: flex;
    gap: 16px;
    align-items: center;
}

._socialLinks_1tak2_136 a {
    display: flex;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

._socialLinks_1tak2_136 a:hover { opacity: 0.8; transform: scale(1.05); }

._mobileMenu_1tak2_153 {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #0a0a1a, #1a1a3a);
    z-index: 1200;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

._mobileMenu_1tak2_153._open_1tak2_165 {
    transform: translateX(0);
}

._mobileMenuContent_1tak2_169 {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

._mobileMenuHeader_1tak2_176 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

._closeButton_1tak2_183 {
    background: transparent;
    color: #fff;
    font-size: 36px;
    padding: 8px;
    line-height: 1;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s ease;
}

._closeButton_1tak2_183:active { transform: scale(0.95); }

._mobileNavLinks_1tak2_201 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

._mobileNavLinks_1tak2_201 li a {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    padding: 16px 0;
    min-height: 44px;
    align-items: center;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

._mobileNavLinks_1tak2_201 li a:active {
    transform: translateX(5px);
    opacity: 0.7;
}

._mobileActions_1tak2_223 {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* ===== HERO ===== */
._hero_lnl06_1 {
    position: relative;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 60px;
}

._container_lnl06_8 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    ._container_lnl06_8 { padding: 0 20px; }
}

._floatingElements_lnl06_23 {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

._floatingElement_lnl06_23 {
    position: absolute;
    animation: _float_lnl06 6s ease-in-out infinite;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    ._floatingElement_lnl06_23 { animation: none; }
}

._element1_lnl06_45 { top: -12%; left: -5%; width: 280px; animation-delay: 0s; opacity: 0.9; }
._element2_lnl06_53 { top: 59%; left: -5%; width: 300px; animation-delay: 1s; opacity: 0.8; }
._element3_lnl06_61 { top: 5%; right: -5%; width: 320px; animation-delay: 2s; opacity: 0.85; }

@media (max-width: 1200px) {
    ._element1_lnl06_45, ._element2_lnl06_53, ._element3_lnl06_61 { width: 180px; }
}

@media (max-width: 768px) {
    ._element1_lnl06_45, ._element2_lnl06_53 { display: none; }
    ._element3_lnl06_61 { width: 120px; opacity: 0.5; }
}

._heroContent_lnl06_94 {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding-top: 20px;
}

@media (max-width: 1100px) {
    ._heroContent_lnl06_94 { flex-direction: column; align-items: center; gap: 40px; }
}

._heroLeft_lnl06_111 {
    flex: 1;
    max-width: 600px;
    position: relative;
}

@media (max-width: 1100px) {
    ._heroLeft_lnl06_111 { max-width: 100%; text-align: center; }
}

._textContent_lnl06_124 { position: relative; }

._textContent_lnl06_124:before {
    content: "";
    position: absolute;
    top: -50px;
    left: -100px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(100,80,160,0.35) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

._textContent_lnl06_124:after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(90,70,150,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

._heroTitle_lnl06_154 { display: flex; flex-direction: column; }

._heroTitle_lnl06_154 span {
    font-weight: 900;
    color: rgba(240,238,250,0.95);
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

._line1_lnl06_167 { font-size: 140px; }
._line2_lnl06_171 { font-size: 140px; margin-left: 60px; }
._line3_lnl06_176 { font-size: 80px; margin-top: 120px; }
._line4_lnl06_181 { font-size: 120px; margin-left: 80px; }

@media (max-width: 1200px) {
    ._line1_lnl06_167 { font-size: 100px; }
    ._line2_lnl06_171 { font-size: 100px; margin-left: 40px; }
    ._line3_lnl06_176 { font-size: 60px; margin-top: 80px; }
    ._line4_lnl06_181 { font-size: 90px; margin-left: 60px; }
}

@media (max-width: 768px) {
    ._line1_lnl06_167 { margin-left: -80px; font-size: 74px; }
    ._line2_lnl06_171 { font-size: 74px; margin-left: -170px; font-weight: 900; }
    ._line3_lnl06_176 { font-size: 54px; margin-top: 40px; margin-left: 0; }
    ._line4_lnl06_181 { font-size: 54px; margin-left: -100px; font-weight: 1000; }
}

._coinSection_lnl06_246 {
    position: absolute;
    top: -2px;
    left: 181px;
    z-index: 5;
}

@media (max-width: 1200px) {
    ._coinSection_lnl06_246 { top: 119px; left: 131px; }
}

@media (max-width: 768px) {
    ._coinSection_lnl06_246 { top: 40px; left: 34%; right: 10px; }
}

._coinVideo_lnl06_276 { display: block; width: 400px; height: auto; }

@media (max-width: 1200px) { ._coinVideo_lnl06_276 { width: 169px; } }
@media (max-width: 768px) { ._coinVideo_lnl06_276 { width: 150px; } }

._bracket_lnl06_300 {
    position: absolute;
    top: 50px;
    right: -60px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    ._bracket_lnl06_300 { top: 40px; right: -40px; }
    ._bracket_lnl06_300 svg { width: 30px; height: 160px; }
}

@media (max-width: 768px) {
    ._bracket_lnl06_300 { display: block; top: 80px; right: 50px; opacity: 1; }
    ._bracket_lnl06_300 svg { width: 20px; height: 50px; }
}

._heroRight_lnl06_334 {
    flex-shrink: 0;
    z-index: 10;
    width: 480px;
}

@media (max-width: 1100px) {
    ._heroRight_lnl06_334 { width: 100%; max-width: 480px; }
}

@keyframes _float_lnl06 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

@keyframes _coinFloat_lnl06 {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(10deg); }
}

/* ===== BUY WIDGET ===== */
._widget_l1psz_1 {
    background: rgba(255,255,255,0);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 520px) {
    ._widget_l1psz_1 { padding: 24px 20px; border-radius: 20px; }
}

._title_l1psz_20 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._title_l1psz_20 { font-size: 28px; } }

._countdown_l1psz_35 {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._countdown_l1psz_35 { gap: 20px; } }

._countdownItem_l1psz_48 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

._countdownNumber_l1psz_54 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

@media (max-width: 520px) { ._countdownNumber_l1psz_54 { font-size: 36px; } }

._countdownLabel_l1psz_67 {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

@media (max-width: 520px) { ._countdownLabel_l1psz_67 { font-size: 14px; } }

._statsRow_l1psz_80 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

._raised_l1psz_87, ._price_l1psz_93 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

._progressBar_l1psz_100 {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    overflow: hidden;
}

._progressFill_l1psz_108 {
    height: 100%;
    background: linear-gradient(90deg, #49b7fa, #6dd5fa);
    border-radius: 100px;
    transition: width 0.3s ease;
}

._divider_l1psz_116 {
    position: relative;
    text-align: center;
    margin: 24px 0;
}

._divider_l1psz_116:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

._divider_l1psz_116 span {
    position: relative;
    background: transparent;
    padding: 0 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
}

._paymentMethods_l1psz_142 {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._paymentMethods_l1psz_142 { flex-wrap: wrap; } }

._methodButton_l1psz_154 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 44px;
}

._methodButton_l1psz_154:hover { border-color: #49b7fa; background: rgba(73,183,250,0.1); }
._methodButton_l1psz_154:active { transform: scale(0.97); }

._methodButton_l1psz_154._active_l1psz_181 {
    border-color: #49b7fa;
    background: rgba(73,183,250,0.15);
    color: #49b7fa;
}

._methodIcon_l1psz_187 { width: 20px; height: 20px; }

._inputsRow_l1psz_193 {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 520px) { ._inputsRow_l1psz_193 { flex-direction: column; gap: 12px; } }

._inputGroup_l1psz_206 { flex: 1; }

._inputLabel_l1psz_210 {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

._inputWrapper_l1psz_218 { position: relative; }

._input_l1psz_193 {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    outline: none;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

._input_l1psz_193:focus { border-color: #49b7fa; }
._input_l1psz_193::placeholder { color: rgba(255,255,255,0.5); }
._input_l1psz_193::-webkit-outer-spin-button,
._input_l1psz_193::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

._inputIcon_l1psz_252 {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

._inputIcon_l1psz_252 img { width: 24px; height: 24px; }

._buttonsRow_l1psz_270 {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 520px) { ._buttonsRow_l1psz_270 { flex-direction: row; gap: 10px; } }

._connectButton_l1psz_284 {
    padding: 16px 24px;
    background: #49b7fa;
    color: #0d1117;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-height: 44px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

._connectButton_l1psz_284:hover { background: #3aa8eb; }
._connectButton_l1psz_284:active { transform: scale(0.97); background: #2a98db; }

@media (max-width: 520px) {
    ._connectButton_l1psz_284 { padding: 12px 10px; font-size: 14px; min-height: 36px; }
}

._chainButton_l1psz_315 {
    padding: 16px 24px;
    background: transparent;
    color: #49b7fa;
    border: 2px solid #49B7FA;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-height: 44px;
    cursor: pointer;
    white-space: nowrap;
}

._chainButton_l1psz_315:hover { background: rgba(73,183,250,0.1); }
._chainButton_l1psz_315:active { transform: scale(0.97); background: rgba(73,183,250,0.15); }

@media (max-width: 520px) {
    ._chainButton_l1psz_315 { padding: 10px; font-size: 14px; min-height: 36px; border-width: 1.5px; }
}

/* ===== COMPANIES MARQUEE ===== */
._companiesSection_1opl1_2 {
    padding: 30px 0;
    overflow: hidden;
}

._marqueeWrapper_1opl1_7 {
    width: 100%;
    overflow: hidden;
}

._marquee_1opl1_7 {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

._companyLogo_1opl1_29 {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    ._companiesSection_1opl1_2 { padding: 40px 0; }
    ._marquee_1opl1_7 { gap: 50px; }
    ._companyLogo_1opl1_29 { height: 30px; }
}

/* ===== ABOUT ===== */
._about_1opl1_52 {
    padding: 20px 0 75px;
    position: relative;
}

@media (max-width: 1200px) { ._about_1opl1_52 { padding: 20px 0 40px; } }

._container_1opl1_63 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) { ._container_1opl1_63 { padding: 0 20px; } }

._chip_1opl1_75 {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #fff;
    letter-spacing: 0.05em;
}

._content_1opl1_88 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

@media (max-width: 1024px) { ._content_1opl1_88 { flex-direction: column; gap: 32px; } }

._leftContent_1opl1_102 { flex: 1; max-width: 700px; }
@media (max-width: 1024px) { ._leftContent_1opl1_102 { max-width: 100%; } }

._heading_1opl1_113 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

@media (max-width: 1200px) { ._heading_1opl1_113 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_1opl1_113 { font-size: 36px; } }
@media (max-width: 480px) { ._heading_1opl1_113 { font-size: 28px; } }

._rightContent_1opl1_141 { flex: 1; max-width: 450px; padding-top: 20px; }
@media (max-width: 1024px) { ._rightContent_1opl1_141 { max-width: 100%; padding-top: 0; } }

._description_1opl1_154 {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

@media (max-width: 768px) { ._description_1opl1_154 { font-size: 16px; } }

/* ===== ROADMAP ===== */
._roadmap_1mj8j_1 {
    padding: 130px 0;
    margin-top: 140px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1366px) { ._roadmap_1mj8j_1 { padding: 25px 0; } }
@media (max-width: 768px) { ._roadmap_1mj8j_1 { padding-top: 20px; padding-bottom: 30px; margin-top: 0; } }
@media (max-width: 480px) { ._roadmap_1mj8j_1 { padding-bottom: 20px; } }

._headerSection_1mj8j_43 {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 40px;
    min-height: 600px;
}

@media (max-width: 1200px) { ._headerSection_1mj8j_43 { min-height: 500px; } }
@media (max-width: 768px) { ._headerSection_1mj8j_43 { padding: 0 20px; min-height: 350px; } }

._headerLeft_1mj8j_66 {
    position: absolute;
    left: 29px;
    top: 4%;
    transform: translateY(-50%);
    z-index: 5;
}

@media (max-width: 768px) {
    ._headerLeft_1mj8j_66 {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
}

._heading_1mj8j_86 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #fff;
}

@media (max-width: 1200px) { ._heading_1mj8j_86 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_1mj8j_86 { font-size: 36px; margin-bottom: 22px; } }

._hoverButton_1mj8j_110 {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #49B7FA;
    border-radius: 100px;
    background: transparent;
    color: #49b7fa;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

._hoverButton_1mj8j_110:hover { background: rgba(73,183,250,0.1); }

@media (max-width: 768px) {
    ._hoverButton_1mj8j_110 { padding: 10px 20px; font-size: 12px; margin-bottom: 12px; }
}

._circleRight_1mj8j_136 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    ._circleRight_1mj8j_136 {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
        min-height: 350px;
    }
}

._saturnImage_1mj8j_157 {
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

._saturnImage_1mj8j_157:hover { transform: translate(-50%, -50%) scale(1.05); }

@media (max-width: 1200px) { ._saturnImage_1mj8j_157 { width: 150px; } }
@media (max-width: 768px) { ._saturnImage_1mj8j_157 { width: 140px; top: 34%; } }
@media (max-width: 480px) { ._saturnImage_1mj8j_157 { width: 110px; } }

._earthImage_1mj8j_192 {
    position: absolute;
    bottom: 45px;
    left: -22%;
    width: 300px;
    height: auto;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

._earthImage_1mj8j_192:hover { transform: scale(1.05); }

@media (max-width: 1200px) { ._earthImage_1mj8j_192 { width: 175px; bottom: 75px; left: -8%; } }
@media (max-width: 768px) { ._earthImage_1mj8j_192 { width: 100px; bottom: 20px; left: 5%; } }
@media (max-width: 480px) { ._earthImage_1mj8j_192 { width: 100px; bottom: 64px; left: 22px; } }

._moonImage_1mj8j_207 {
    position: absolute;
    bottom: 102px;
    right: -13%;
    width: 250px;
    height: auto;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

._moonImage_1mj8j_207:hover { transform: scale(1.05); }

@media (max-width: 1200px) { ._moonImage_1mj8j_207 { width: 175px; bottom: 75px; right: -8%; } }
@media (max-width: 768px) { ._moonImage_1mj8j_207 { width: 100px; bottom: 20px; right: 5%; } }
@media (max-width: 480px) { ._moonImage_1mj8j_207 { width: 100px; bottom: 58px; right: 27px; } }

/* Roadmap Info Boxes */
._infoBox_1mj8j_459 {
    position: absolute;
    padding: 20px 24px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(70,50,100,0.9), rgba(50,35,75,0.95), rgba(60,45,85,0.9));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120,100,160,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px rgba(255,255,255,0.08), inset 0 -1px rgba(0,0,0,0.2);
    z-index: 10;
    max-width: 280px;
    transition: all 0.3s ease;
    pointer-events: none;
}

._infoBoxEarth_1mj8j_479 { bottom: 10%; left: 19%; }
._infoBoxSaturn_1mj8j_485 { top: 42%; left: 50%; transform: translateX(-50%); }
._infoBoxMoon_1mj8j_492 { bottom: 10%; right: 22%; }

._infoContent_1mj8j_497 { display: flex; align-items: flex-start; gap: 16px; }
._infoNumber_1mj8j_503 { font-size: 28px; font-weight: 700; color: #49b7fa; line-height: 1; flex-shrink: 0; }
._infoText_1mj8j_511 { flex: 1; }
._infoTitle_1mj8j_515 { font-size: 16px; line-height: 1.3; font-weight: 600; margin-bottom: 8px; color: #fff; }

._infoItems_1mj8j_523 {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.7);
    margin: 0;
    padding: 0;
    list-style: none;
}

._infoItems_1mj8j_523 li { position: relative; padding-left: 12px; margin-bottom: 4px; }
._infoItems_1mj8j_523 li:before { content: "•"; position: absolute; left: 0; color: #49b7fa; }

@media (max-width: 1200px) {
    ._infoBox_1mj8j_459 { padding: 16px 20px; max-width: 240px; }
    ._infoBoxEarth_1mj8j_479 { bottom: 15%; left: -10%; }
    ._infoBoxSaturn_1mj8j_485 { top: 5%; left: 50%; transform: translateX(-50%); }
    ._infoBoxMoon_1mj8j_492 { bottom: 15%; right: -10%; }
    ._infoNumber_1mj8j_503 { font-size: 24px; }
    ._infoTitle_1mj8j_515 { font-size: 14px; }
    ._infoItems_1mj8j_523 { font-size: 11px; }
    ._infoItems_1mj8j_523 li { padding-left: 10px; margin-bottom: 3px; }
}

@media (max-width: 768px) {
    ._infoBox_1mj8j_459 { padding: 14px 18px; max-width: 180px; }
    ._infoBoxEarth_1mj8j_479 { bottom: 25%; left: 15%; }
    ._infoBoxSaturn_1mj8j_485 { top: 5%; left: 50%; transform: translateX(-50%); }
    ._infoBoxMoon_1mj8j_492 { bottom: 25%; right: 15%; }
    ._infoContent_1mj8j_497 { gap: 10px; }
    ._infoNumber_1mj8j_503 { font-size: 22px; }
    ._infoTitle_1mj8j_515 { font-size: 13px; margin-bottom: 6px; }
    ._infoItems_1mj8j_523 { font-size: 10px; line-height: 1.4; }
    ._infoItems_1mj8j_523 li { padding-left: 8px; margin-bottom: 2px; }
}

@media (max-width: 480px) {
    ._infoBox_1mj8j_459 { padding: 10px 12px; max-width: 149px; }
    ._infoBoxEarth_1mj8j_479, ._infoBoxSaturn_1mj8j_485, ._infoBoxMoon_1mj8j_492 {
        inset: auto auto 31% 121px;
        transform: none;
    }
    ._infoContent_1mj8j_497 { gap: 8px; }
    ._infoNumber_1mj8j_503 { font-size: 16px; }
    ._infoTitle_1mj8j_515 { font-size: 10px; margin-bottom: 4px; }
    ._infoItems_1mj8j_523 { font-size: 8px; line-height: 1.3; }
    ._infoItems_1mj8j_523 li { padding-left: 6px; margin-bottom: 1px; }
}

._dashedCircle_1mj8j_270 { max-width: 109%; height: auto; opacity: 0.5; }

@media (max-width: 1200px) { ._dashedCircle_1mj8j_270 { width: 550px; } }
@media (max-width: 768px) { ._dashedCircle_1mj8j_270 { width: 320px; } }
@media (max-width: 480px) { ._dashedCircle_1mj8j_270 { width: 280px; } }

/* ===== ROCKET ===== */
._rocketSection_17vye_1 {
    position: relative;
    height: 500px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 150px;
}

._rocketWrapper_17vye_12 {
    position: relative;
    z-index: 10;
    will-change: transform;
    transition: transform 0.1s linear;
}

._rocket_17vye_1 {
    width: 620px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 1200px) {
    ._rocketSection_17vye_1 { height: 400px; }
    ._rocket_17vye_1 { width: 320px; }
}

@media (max-width: 768px) {
    ._rocketSection_17vye_1 { height: 180px; margin-top: 80px; margin-bottom: -10px; align-items: flex-end; }
    ._rocket_17vye_1 { width: 200px; }
}

@media (max-width: 480px) {
    ._rocketSection_17vye_1 { height: 150px; margin-top: 60px; margin-bottom: -20px; }
    ._rocket_17vye_1 { width: 160px; }
}

/* ===== HOW TO BUY ===== */
._howToBuy_1pibd_1 {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: -290px;
    scroll-margin-top: -100px;
}

@media (max-width: 1200px) { ._howToBuy_1pibd_1 { padding: 60px 0; margin-top: 60px; } }
@media (max-width: 768px) { ._howToBuy_1pibd_1 { padding: 40px 0; margin-top: 40px; } }
@media (max-width: 480px) { ._howToBuy_1pibd_1 { padding: 30px 0; margin-top: 20px; } }
@media (max-width: 320px) { ._howToBuy_1pibd_1 { padding: 20px 0; margin-top: 10px; } }

._container_1pibd_71 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) { ._container_1pibd_71 { padding: 0 20px; } }
@media (max-width: 480px) { ._container_1pibd_71 { padding: 0 15px; } }

._header_1pibd_93 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -100px;
    position: relative;
    z-index: 10;
}

@media (max-width: 768px) {
    ._header_1pibd_93 { flex-direction: column; gap: 20px; text-align: center; margin-bottom: 20px; }
}

@media (max-width: 480px) { ._header_1pibd_93 { gap: 16px; margin-bottom: 10px; } }

._heading_1pibd_118 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1200px) { ._heading_1pibd_118 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_1pibd_118 { font-size: 36px; } }
@media (max-width: 480px) { ._heading_1pibd_118 { font-size: 28px; } }
@media (max-width: 320px) { ._heading_1pibd_118 { font-size: 24px; } }

._headerRight_1pibd_151 { display: flex; align-items: center; gap: 16px; }

._buyButton_1pibd_157 {
    background: #49b7fa;
    color: #101828;
    border-radius: 100px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

._buyButton_1pibd_157:hover { background: #3aa8eb; }

._navButtons_1pibd_171 { display: flex; gap: 8px; }

._navButton_1pibd_171 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    padding: 0;
}

._navButton_1pibd_171:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
    ._buyButton_1pibd_157 { padding: 12px 24px; font-size: 14px; }
    ._navButton_1pibd_171 { width: 38px; height: 38px; }
    ._navButton_1pibd_171 svg { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
    ._buyButton_1pibd_157 { padding: 10px 20px; font-size: 13px; }
    ._navButton_1pibd_171 { width: 34px; height: 34px; }
    ._navButton_1pibd_171 svg { width: 14px; height: 14px; }
}

._content_1pibd_228 {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 512px;
    gap: 0;
}

@media (max-width: 1400px) { ._content_1pibd_228 { min-height: 470px; padding-top: 48px; } }
@media (max-width: 1200px) { ._content_1pibd_228 { min-height: 425px; padding-top: 38px; } }
@media (max-width: 900px) { ._content_1pibd_228 { flex-direction: column; min-height: auto; align-items: center; } }
@media (max-width: 768px) { ._content_1pibd_228 { min-height: auto; padding-top: 20px; } }
@media (max-width: 480px) { ._content_1pibd_228 { min-height: auto; padding-top: 10px; } }

._leftIcons_1pibd_275 {
    flex: 0 0 375px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    margin-right: -120px;
    position: relative;
    z-index: 3;
    align-self: flex-end;
    padding-bottom: 170px;
}

._floatingIcon1_1pibd_288 {
    width: 590px;
    height: auto;
    animation: _floatUpDown 4s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

@keyframes _floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (max-width: 1400px) {
    ._leftIcons_1pibd_275 { flex: 0 0 325px; margin-right: -190px; padding-bottom: 95px; }
    ._floatingIcon1_1pibd_288 { width: 500px; }
}

@media (max-width: 1200px) {
    ._leftIcons_1pibd_275 { flex: 0 0 265px; margin-right: -150px; padding-bottom: 75px; }
    ._floatingIcon1_1pibd_288 { width: 425px; }
}

@media (max-width: 900px) { ._leftIcons_1pibd_275 { display: none; } }

._monitorSection_1pibd_333 {
    position: relative;
    flex: 0 0 auto;
    margin-top: 40px;
    margin-left: -328px;
}

@media (max-width: 900px) { ._monitorSection_1pibd_333 { margin-left: 0; margin-top: 20px; } }
@media (max-width: 480px) { ._monitorSection_1pibd_333 { margin-top: 10px; } }

._monitorWrapper_1pibd_412 { position: relative; z-index: 2; }

._monitor_1pibd_333 { width: 875px; height: auto; display: block; }

@media (max-width: 1400px) { ._monitor_1pibd_333 { width: 700px; } }
@media (max-width: 1200px) { ._monitor_1pibd_333 { width: 560px; } }
@media (max-width: 768px) { ._monitor_1pibd_333 { width: 100%; max-width: 420px; } }
@media (max-width: 480px) { ._monitor_1pibd_333 { width: 100%; max-width: 320px; } }
@media (max-width: 320px) { ._monitor_1pibd_333 { max-width: 280px; } }

._screenCard_1pibd_456 {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    border-radius: 12px;
    padding: 38px 48px;
    text-align: center;
    width: 64%;
    height: 39%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: all 0.3s ease;
}

@media (max-width: 1400px) { ._screenCard_1pibd_456 { padding: 32px 38px; } }
@media (max-width: 1200px) { ._screenCard_1pibd_456 { padding: 26px 30px; } }
@media (max-width: 768px) { ._screenCard_1pibd_456 { padding: 18px 22px; } }
@media (max-width: 480px) { ._screenCard_1pibd_456 { padding: 10px 12px; border-radius: 6px; } }

._rightCard_1pibd_501 {
    display: flex;
    align-items: flex-start;
    margin-left: -38px;
    padding-top: 75px;
    z-index: 1;
}

._previewCard_1pibd_509 {
    background: #fff;
    border-radius: 10px;
    padding: 25px 62px;
    text-align: center;
    width: 524px;
    height: 348px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: absolute;
    top: 26%;
}

._previewCard_1pibd_509:hover { transform: translateY(-5px); box-shadow: 0 15px 50px rgba(0,0,0,0.15); }

@media (max-width: 1400px) {
    ._rightCard_1pibd_501 { margin-left: -28px; padding-top: 65px; }
    ._previewCard_1pibd_509 { padding: 20px 50px; width: 438px; height: 225px; }
}

@media (max-width: 1200px) {
    ._rightCard_1pibd_501 { margin-left: -19px; padding-top: 56px; }
    ._previewCard_1pibd_509 { padding: 18px 38px; width: 350px; height: 188px; }
}

@media (max-width: 900px) { ._rightCard_1pibd_501 { display: none; } }

._stepNumber_1pibd_561 {
    display: block;
    font-size: 52px;
    font-weight: 700;
    color: #49b7fa;
    margin-bottom: 15px;
}

@media (max-width: 1400px) { ._stepNumber_1pibd_561 { font-size: 45px; } }
@media (max-width: 1200px) { ._stepNumber_1pibd_561 { font-size: 38px; } }
@media (max-width: 768px) { ._stepNumber_1pibd_561 { font-size: 25px; margin-bottom: 8px; } }
@media (max-width: 480px) { ._stepNumber_1pibd_561 { font-size: 18px; margin-bottom: 4px; } }

._cardTitle_1pibd_595 {
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #101828;
    margin-bottom: 18px;
}

@media (max-width: 1400px) { ._cardTitle_1pibd_595 { font-size: 26px; } }
@media (max-width: 1200px) { ._cardTitle_1pibd_595 { font-size: 15px; } }
@media (max-width: 768px) { ._cardTitle_1pibd_595 { font-size: 17px; margin-bottom: 10px; } }
@media (max-width: 480px) { ._cardTitle_1pibd_595 { font-size: 12px; margin-bottom: 6px; } }

._cardDescription_1pibd_629 {
    font-size: 15px;
    line-height: 1.6;
    color: #667085;
    max-width: 85%;
}

@media (max-width: 1400px) { ._cardDescription_1pibd_629 { font-size: 13px; } }
@media (max-width: 1200px) { ._cardDescription_1pibd_629 { font-size: 11px; } }
@media (max-width: 768px) { ._cardDescription_1pibd_629 { font-size: 12px; line-height: 1.4; } }
@media (max-width: 480px) { ._cardDescription_1pibd_629 { font-size: 9px; line-height: 1.3; max-width: 95%; } }

._disabled_1pibd_664 { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

._dashedArrow_1pibd_671 {
    position: absolute;
    bottom: 212px;
    left: 71%;
    transform: translateX(100px);
    z-index: 1;
    width: 200px;
    height: 65px;
}

@media (max-width: 1200px) { ._dashedArrow_1pibd_671 { width: 160px; height: 80px; bottom: 180px; } }
@media (max-width: 900px) { ._dashedArrow_1pibd_671 { display: none; } }

/* ===== TOKENOMICS ===== */
._tokenomics_8hkg6_1 {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

._tokenomics_8hkg6_1:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 49.5%, rgba(255,255,255,0.1) 49.5%, rgba(255,255,255,0.1) 50.5%, transparent 50.5%),
        linear-gradient(45deg, transparent 49.5%, rgba(255,255,255,0.1) 49.5%, rgba(255,255,255,0.1) 50.5%, transparent 50.5%);
    background-size: 120px 120px, 120px 120px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 65%, transparent 100%);
}

@media (max-width: 1366px) { ._tokenomics_8hkg6_1 { padding: 25px 0; } }

@media (max-width: 768px) {
    ._tokenomics_8hkg6_1 { padding: 60px 0; margin-top: 200px; }
    ._tokenomics_8hkg6_1:before { display: none; }
}

@media (max-width: 480px) { ._tokenomics_8hkg6_1 { padding: 50px 0; margin-top: 280px; } }
@media (max-width: 360px) { ._tokenomics_8hkg6_1 { padding: 40px 0; margin-top: 250px; } }

._container_8hkg6_55 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) { ._container_8hkg6_55 { padding: 0 20px; } }

._header_8hkg6_69 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

@media (max-width: 1366px) { ._header_8hkg6_69 { margin-bottom: 40px; } }
@media (max-width: 768px) { ._header_8hkg6_69 { flex-direction: column; gap: 30px; } }

._heading_8hkg6_89 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1200px) { ._heading_8hkg6_89 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_8hkg6_89 { font-size: 36px; } }

._tokenInfo_8hkg6_111 { display: flex; gap: 50px; }
@media (max-width: 768px) { ._tokenInfo_8hkg6_111 { gap: 30px; } }

._tokenInfoItem_8hkg6_122 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

._tokenInfoLabel_8hkg6_129 {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.02em;
}

._tokenInfoLine_8hkg6_136 { width: 60px; height: 1px; background: #fff; margin: 4px 0; }

._tokenInfoValue_8hkg6_143 { font-size: 28px; font-weight: 700; color: #fff; }

@media (max-width: 768px) {
    ._tokenInfoLabel_8hkg6_129 { font-size: 14px; }
    ._tokenInfoValue_8hkg6_143 { font-size: 20px; }
    ._tokenInfoLine_8hkg6_136 { width: 40px; }
}

._contentWrapper_8hkg6_162 { position: relative; padding: 40px 0; }

._content_8hkg6_162 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1200px) { ._content_8hkg6_162 { gap: 40px; } }
@media (max-width: 900px) { ._content_8hkg6_162 { flex-direction: column; gap: 40px; } }

._chartWrapper_8hkg6_192 {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

._pieChartImage_8hkg6_199 {
    width: 720px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

@media (max-width: 1200px) { ._pieChartImage_8hkg6_199 { width: 400px; } }
@media (max-width: 768px) { ._pieChartImage_8hkg6_199 { width: 300px; } }
@media (max-width: 480px) { ._pieChartImage_8hkg6_199 { width: 311px; } }

._leftLegend_8hkg6_224, ._rightLegend_8hkg6_225 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 900px) {
    ._leftLegend_8hkg6_224, ._rightLegend_8hkg6_225 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

._legendItem_8hkg6_241 { display: flex; align-items: center; gap: 16px; }

._legendColor_8hkg6_247 { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; }

._legendText_8hkg6_254 { display: flex; flex-direction: column; gap: 2px; }

._legendPercentage_8hkg6_260 { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }

@media (max-width: 1200px) { ._legendPercentage_8hkg6_260 { font-size: 24px; } }
@media (max-width: 768px) { ._legendPercentage_8hkg6_260 { font-size: 20px; } }

._legendLabel_8hkg6_279 { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) { ._legendLabel_8hkg6_279 { font-size: 14px; } }

/* ===== FAQs ===== */
._faq_ew65z_1 {
    margin-top: -30px !important;
    padding-top: 0 !important;
    position: relative;
}

@media (max-width: 1366px) { ._faq_ew65z_1 { padding: 0 0 30px; margin-top: -10px; } }
@media (max-width: 768px) { ._faq_ew65z_1 { padding: 0 0 20px; margin-top: 0; } }

._container_ew65z_22 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) { ._container_ew65z_22 { padding: 0 20px; } }

._header_ew65z_33 {
    text-align: center;
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 20px;
}

@media (max-width: 1366px) { ._header_ew65z_33 { margin-bottom: 20px; } }
@media (max-width: 768px) { ._header_ew65z_33 { margin-bottom: 10px; } }

._heading_ew65z_52 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    margin-top: 0;
}

@media (max-width: 1200px) { ._heading_ew65z_52 { font-size: 48px; } }
@media (max-width: 768px) { ._heading_ew65z_52 { font-size: 36px; margin-bottom: 8px; } }
@media (max-width: 480px) { ._heading_ew65z_52 { font-size: 28px; } }

._subtitle_ew65z_95 {
    font-size: 32px;
    font-weight: 600;
    color: #49b7fa;
    margin-bottom: 8px;
}

@media (max-width: 768px) { ._subtitle_ew65z_95 { font-size: 24px; margin-bottom: 5px; } }

._subheading_ew65z_110 { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.7); }
@media (max-width: 768px) { ._subheading_ew65z_110 { font-size: 16px; } }

._grid_ew65z_122 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px;
}

@media (max-width: 1100px) { ._grid_ew65z_122 { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (max-width: 700px) { ._grid_ew65z_122 { grid-template-columns: 1fr; gap: 25px; } }

._faqItem_ew65z_143 { text-align: center; }

._iconWrapper_ew65z_147 {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49b7fa;
    border-radius: 12px;
}

._icon_ew65z_147 { width: 28px; height: 28px; filter: brightness(0) invert(1); }

._question_ew65z_165 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
}

@media (max-width: 768px) { ._question_ew65z_165 { font-size: 20px; margin-bottom: 8px; } }

._answer_ew65z_83 {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) { ._answer_ew65z_83 { font-size: 15px; } }

/* ===== FOOTER ===== */
._footer_av8mu_1 {
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
}

._container_av8mu_7 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    ._footer_av8mu_1 { padding: 40px 0 20px; margin-top: 20px; }
    ._container_av8mu_7 { padding: 0 20px; }
}

._cloudLeft1_av8mu_28 {
    position: absolute;
    left: 50px;
    top: 10%;
    pointer-events: none;
    animation: _cloudFloat1 6s ease-in-out infinite;
}

._cloudLeft1_av8mu_28 img { width: 550px; height: auto; }

._cloudLeft2_av8mu_41 {
    position: absolute;
    left: 100px;
    top: 28%;
    pointer-events: none;
    animation: _cloudFloat2 8s ease-in-out infinite;
}

._cloudLeft2_av8mu_41 img { width: 480px; height: auto; }

._cloudRight1_av8mu_54 {
    position: absolute;
    right: 358px;
    top: 18%;
    pointer-events: none;
    animation: _cloudFloat1 7s ease-in-out infinite;
}

._cloudRight1_av8mu_54 img { width: 520px; height: auto; }

._cloudRight2_av8mu_67 {
    position: absolute;
    right: 120px;
    top: 27%;
    pointer-events: none;
    animation: _cloudFloat2 5s ease-in-out infinite;
}

._cloudRight2_av8mu_67 img { width: 450px; height: auto; }

._cloudBottomRight_av8mu_80 {
    position: absolute;
    right: 19%;
    bottom: 35%;
    pointer-events: none;
    animation: _cloudFloat1 6s ease-in-out infinite;
}

._cloudBottomRight_av8mu_80 img { width: 380px; height: auto; }

@keyframes _cloudFloat1 {
    0%, 100% { transform: translate(0) translateY(0); }
    50% { transform: translate(15px) translateY(-10px); }
}

@keyframes _cloudFloat2 {
    0%, 100% { transform: translate(0) translateY(0); }
    50% { transform: translate(-10px) translateY(15px); }
}

@media (max-width: 1200px) {
    ._cloudLeft1_av8mu_28 img, ._cloudLeft2_av8mu_41 img,
    ._cloudRight1_av8mu_54 img, ._cloudRight2_av8mu_67 img { width: 300px; }
    ._cloudBottomRight_av8mu_80 img { width: 200px; }
    ._cloudRight1_av8mu_54 { right: 530px; top: 29%; }
    ._cloudBottomRight_av8mu_80 { right: 7%; bottom: 50%; }
}

._cloudMobileRight_av8mu_111 { display: none; }

@media (max-width: 768px) {
    ._cloudLeft1_av8mu_28, ._cloudLeft2_av8mu_41,
    ._cloudRight1_av8mu_54, ._cloudRight2_av8mu_67,
    ._cloudBottomRight_av8mu_80, ._cloudMobileRight_av8mu_111 { display: none; }
}

._mobileCloudsWrapper_av8mu_122 { display: none; }

@media (max-width: 768px) {
    ._mobileCloudsWrapper_av8mu_122 {
        display: block;
        position: relative;
        width: 100%;
        height: 120px;
        margin-top: 20px;
        margin-bottom: 20px;
        z-index: 3;
    }
    ._mobileCloudLeft_av8mu_137 {
        position: absolute;
        left: 0%;
        top: -85px;
        width: 400px;
        height: auto;
        animation: _cloudFloat1 6s ease-in-out infinite;
    }
    ._mobileCloudRight_av8mu_146 {
        position: absolute;
        right: -110px;
        top: -90px;
        width: 450px;
        height: auto;
        animation: _cloudFloat2 8s ease-in-out infinite;
    }
    ._mobileCloudCenter_av8mu_155 {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -90px;
        width: 55%;
        height: auto;
        animation: _cloudFloat1 7s ease-in-out infinite;
    }
}

._contactCard_av8mu_167 {
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    margin-bottom: 60px;
    min-height: 260px;
    z-index: 50;
}

._nightSky_av8mu_180 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    border-radius: 24px;
}

@media (max-width: 900px) {
    ._contactCard_av8mu_167 { flex-direction: column; text-align: center; padding: 40px 30px; margin-bottom: 30px; }
}

@media (max-width: 768px) {
    ._contactCard_av8mu_167 { overflow: visible; position: relative; padding: 30px 20px; min-height: auto; margin-bottom: 50px; }
}

._contactContent_av8mu_210 { max-width: 500px; position: relative; z-index: 2; text-align: center; }

._contactHeading_av8mu_217 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }

@media (max-width: 768px) { ._contactHeading_av8mu_217 { font-size: 28px; } }

._contactDescription_av8mu_230 { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 24px; }

._contactButton_av8mu_236 {
    display: inline-block;
    background: #49b7fa;
    color: #101828;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.25s ease;
}

._contactButton_av8mu_236:hover { background: #3aa8eb; }

._astronaut_av8mu_251 {
    position: absolute;
    right: 0;
    bottom: -160px;
    z-index: 10;
    animation: _astronautFloat 4s ease-in-out infinite;
}

@keyframes _astronautFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

._astronaut_av8mu_251 img { width: 320px; height: auto; }

@media (max-width: 1200px) { ._astronaut_av8mu_251 img { width: 260px; } }

@media (max-width: 900px) {
    ._astronaut_av8mu_251 { position: relative; right: auto; bottom: auto; }
    ._astronaut_av8mu_251 img { width: 180px; margin-top: 20px; }
}

@media (max-width: 768px) {
    ._astronaut_av8mu_251 { position: absolute; right: -15px; bottom: -65px; z-index: 10; }
    ._astronaut_av8mu_251 img { width: 100px; margin-top: 0; }
}

._newsletterSection_av8mu_299 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 50px;
    margin-top: 284px;
}

@media (max-width: 900px) {
    ._newsletterSection_av8mu_299 { flex-direction: column; align-items: center; gap: 24px; margin-top: 15px; }
}

@media (max-width: 768px) { ._newsletterSection_av8mu_299 { margin-top: 40px; } }

._newsletterText_av8mu_323 { max-width: 400px; }

._newsletterHeading_av8mu_327 { font-size: 24px; font-weight: 700; margin-bottom: 8px; color: #fff; }

@media (max-width: 600px) { ._newsletterHeading_av8mu_327 { font-size: 20px; } }

._newsletterDescription_av8mu_338 { font-size: 16px; color: rgba(255,255,255,0.7); }

._newsletterForm_av8mu_343 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    width: 100%;
}

._inputWrapper_av8mu_351 { display: flex; gap: 12px; }

._emailInput_av8mu_356 {
    flex: 1;
    padding: 16px 20px;
    background: #fff;
    border: none;
    border-radius: 8px;
    color: #101828;
    font-size: 16px;
    outline: none;
}

._emailInput_av8mu_356::placeholder { color: #667085; }

._submitButton_av8mu_369 {
    width: 52px;
    height: 52px;
    background: #49b7fa;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background-color 0.25s ease;
    flex-shrink: 0;
}

._submitButton_av8mu_369:hover { background: #3aa8eb; }

._checkboxLabel_av8mu_384 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
}

._checkbox_av8mu_384 { width: 16px; height: 16px; cursor: pointer; }

._termsLink_av8mu_394 { color: #fff; text-decoration: underline; }

._bottomSection_av8mu_397 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 30px;
}

@media (max-width: 900px) {
    ._bottomSection_av8mu_397 { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
}

@media (max-width: 768px) {
    ._bottomSection_av8mu_397 { flex-direction: column; align-items: flex-start; text-align: left; gap: 24px; }
}

._logoSection_av8mu_424 a { display: inline-block; }

._navLinks_av8mu_426 { display: flex; gap: 32px; flex-wrap: wrap; }

@media (max-width: 900px) { ._navLinks_av8mu_426 { justify-content: center; gap: 20px; } }
@media (max-width: 768px) { ._navLinks_av8mu_426 { justify-content: flex-start; gap: 40px; margin-left: 15px; } }
@media (max-width: 600px) { ._navLinks_av8mu_426 { flex-direction: column; gap: 12px; } }

._navLinks_av8mu_426 a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

._navLinks_av8mu_426 a:hover { opacity: 1; }

._socialLinks_av8mu_461 { display: flex; gap: 16px; }

@media (max-width: 768px) { ._socialLinks_av8mu_461 { justify-content: flex-start; margin-left: 15px; } }

._socialLinks_av8mu_461 a { display: flex; transition: opacity 0.3s ease; }
._socialLinks_av8mu_461 a:hover { opacity: 0.8; }

._copyright_av8mu_481 { text-align: center; padding-top: 10px; }
._copyright_av8mu_481 p { font-size: 14px; color: rgba(255,255,255,0.6); }
