:root {
    --text-x10: #000000e6;
    --text-x20: #00000080;
    --text-x30: #0000004d;
    --text-white: #fff;
    --text-black: #000000e6;
    --text-inverse: #fff;
    --fill-x10: #000000e6;
    --fill-x20: #00000059;
    --fill-x30: #0003;
    --fill-x40: #0000001a;
    --fill-x50: #00000012;
    --fill-x55: #0000000d;
    --fill-x60: #00000008;
    --fill-white: #fff;
    --fill-inverse: #fff;
    --surface-x10: #fff;
    --surface-x20: #fffffff5;
    --surface-x30: #fff;
    --surface-x40: #fff;
    --surface-inverse: #1a1a1a;
    --surface-overlay: #0006;
    --surface-foreground: #0000000d;
    --surface-foreground-opaque: #f7f7f7;
    --sell-x10: #000000e6;
    --sell-x20: #0000000d;
    --sell-x30: #0000001a;
    --sell-x40: #00000073;
    --sell-x50: #0009;
    --purple-x10: #a0f;
    --purple-x20: #aa00ff14;
    --purple-x30: #aa00ff1f;
    --purple-x40: #8f00d6;
    --purple-x50: #609;
    --blue-x10: #265cff;
    --blue-x20: #265cff14;
    --blue-x30: #265cff1f;
    --blue-x40: #204dd6;
    --blue-x50: #173799;
    --teal-x10: #00b5d9;
    --teal-x20: #00b5d914;
    --teal-x30: #00b5d91f;
    --teal-x40: #0098b6;
    --teal-x50: #006d82;
    --green-x10: #0ac285;
    --green-x20: #0ac28514;
    --green-x30: #0ac28529;
    --green-x40: #08a370;
    --green-x50: #067450;
    --yellow-x10: #ffd600;
    --yellow-x20: #ffd60014;
    --yellow-x30: #ffd6001f;
    --yellow-x40: #d6b400;
    --yellow-x50: #998000;
    --orange-x10: #ff6a00;
    --orange-x20: #ff6a0014;
    --orange-x30: #ff6a001f;
    --orange-x40: #d65900;
    --orange-x50: #994000;
    --red-x10: #d91667;
    --red-x20: #d916670f;
    --red-x30: #d916671a;
    --red-x40: #d91616;
    --red-x50: #820d3e;
    --brand-primary: #09c285;
    --brand-secondary: #003221;
    --custom-fill: #00000008;
    --menu-width: 1320px;
}

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

body {
    font-family: 'Inter';
    color: var(--text-x10);
    background-color: var(--surface-x10);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: var(--menu-width);
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    background-color: var(--surface-x10);
    border-bottom: 1px solid var(--fill-x40);
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 24px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: var(--text-x10);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--brand-primary);
}

.nav-link-live {
    color: var(--red-x10);
    font-weight: 600;
}

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

.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--surface-foreground-opaque);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid var(--fill-x40);
    transition: border-color 0.2s ease;
}

.search-box:focus-within {
    border-color: var(--brand-primary);
}

.search-icon {
    color: var(--text-x20);
    flex-shrink: 0;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--text-x10);
    width: 200px;
}

.search-input:focus {
    border: none;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-x20);
}

.btn-login {
    color: var(--text-x10);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-login:hover {
    background-color: var(--fill-x60);
}

.btn-signup {
    background-color: var(--brand-primary);
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-signup:hover {
    background-color: var(--green-x40);
    transform: translateY(-1px);
}

.btn-signup:active {
    transform: translateY(0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-x10);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.secondary-nav {
    border-top: 1px solid var(--fill-x40);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.secondary-nav::-webkit-scrollbar {
    display: none;
}

.secondary-nav-links {
    display: flex;
    gap: 8px;
    padding: 12px 0;
    white-space: nowrap;
}

.secondary-link {
    color: var(--text-x20);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.secondary-link:hover {
    color: var(--text-x10);
    background-color: var(--fill-x60);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--surface-x10);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    padding: 80px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--surface-foreground-opaque);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--fill-x40);
    margin-bottom: 16px;
}

.mobile-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: var(--text-x10);
    width: 100%;
}

.mobile-link {
    color: var(--text-x10);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--fill-x40);
}

.mobile-link-live {
    color: var(--red-x10);
}

.mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.mobile-buttons .btn-login,
.mobile-buttons .btn-signup {
    text-align: center;
    padding: 14px 20px;
    font-size: 16px;
}

.hero {
    position: relative;
    max-height: 500px;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5fdfb 40%, #e8f7f2 100%);
}

.hero-gradient {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 194, 133, 0.15) 0%, rgba(10, 194, 133, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    filter: blur(40px);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 80px 0;
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-x10);
    margin-bottom: 32px;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.1;
    color: var(--text-x20);
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--brand-primary);
    color: var(--text-white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 194, 133, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--green-x40);
    box-shadow: 0 4px 16px rgba(10, 194, 133, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(10, 194, 133, 0.2);
}

.btn-large {
    font-size: 18px;
    padding: 16px 40px;
}

.about-section {
    padding: 80px 0 40px;
    background-color: var(--surface-x10);
    position: relative;
}

.about-content {
    max-width: 900px;
}

.about-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-x10);
    margin-bottom: 24px;
    font-weight: 400;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-x20);
    font-weight: 400;
}

.investors-section {
    padding: 40px 0 80px;
    background-color: var(--surface-x10);
}

.investors-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-x10);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.investors-list {
    font-size: 16px;
    color: var(--text-x20);
    line-height: 1.6;
    font-weight: 400;
}

.token-info-section {
    padding: 80px 0;
    background-color: var(--surface-foreground-opaque);
    position: relative;
}

.token-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fill-x40), transparent);
}

.token-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-x10);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-x20);
    margin-bottom: 16px;
    font-weight: 400;
}

.token-info-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.token-info-image img:hover {
    transform: translateY(-8px);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--green-x40) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.cta-description {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-section .btn-primary {
    background-color: var(--text-white);
    color: var(--brand-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-primary:hover {
    background-color: var(--surface-foreground-opaque);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--green-x40);
}

.cta-section .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 100px 0;
    background-color: var(--surface-x10);
}

.faq-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-x10);
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.8px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--fill-x40);
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: var(--fill-x60);
}

.faq-item.active {
    background-color: var(--surface-foreground-opaque);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-x10);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--brand-primary);
}

.faq-item.active .faq-question {
    color: var(--brand-primary);
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-x20);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 24px 20px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-x20);
}

.footer {
    padding: 40px 0;
    background-color: var(--surface-x10);
    border-top: 1px solid var(--fill-x40);
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-x20);
    font-weight: 400;
    letter-spacing: 0.2px;
}

@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }
}

@media (max-width: 1024px) {
    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .token-info-image {
        order: -1;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .search-input {
        width: 150px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-right .search-box,
    .btn-login {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-right {
        gap: 12px;
    }

    .secondary-nav-links {
        gap: 4px;
    }

    .secondary-link {
        font-size: 13px;
        padding: 6px 10px;
    }

    .hero {
        min-height: 350px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 42px;
        margin-bottom: 24px;
    }

    .hero-background {
        left: 20%;
    }

    .hero-gradient {
        width: 400px;
        height: 400px;
        right: -50px;
    }

    .about-section {
        padding: 60px 0 30px;
    }

    .about-intro {
        font-size: 16px;
    }

    .investors-section {
        padding: 30px 0 60px;
    }

    .investors-title {
        font-size: 20px;
    }

    .token-info-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 18px;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .faq-question {
        font-size: 16px;
        padding: 20px 16px;
    }

    .faq-answer p {
        font-size: 15px;
        padding: 0 16px 20px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
    }

    .btn-signup {
        padding: 8px 16px;
        font-size: 14px;
    }

    .secondary-link {
        font-size: 12px;
        padding: 5px 8px;
    }

    .hero {
        min-height: 300px;
    }

    .hero-content {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-background {
        left: 0;
        opacity: 0.5;
    }

    .hero-gradient {
        width: 300px;
        height: 300px;
        right: -100px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 12px 24px;
        width: 100%;
        text-align: center;
    }

    .btn-large {
        font-size: 16px;
        padding: 14px 32px;
    }

    .about-section {
        padding: 50px 0 30px;
    }

    .about-intro,
    .about-description {
        font-size: 15px;
    }

    .investors-section {
        padding: 30px 0 50px;
    }

    .investors-title {
        font-size: 18px;
    }

    .investors-list {
        font-size: 14px;
    }

    .token-info-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px 12px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 12px 16px 12px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-content {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.token-info-grid {
    animation: fadeIn 0.8s ease-out 0.3s backwards;
}

.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

.faq-list {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

img {
    loading: lazy;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

*:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
}

::selection {
    background-color: var(--green-x30);
    color: var(--text-x10);
}

html {
    scroll-behavior: smooth;
}

@media print {

    .header,
    .mobile-menu,
    .cta-section,
    .footer {
        display: none;
    }
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--brand-primary);
    border-radius: 20px;
    border: 2px solid transparent;
}