@font-face {
    font-family: 'Alliance';
    font-weight: 300;
    font-style: normal;
    src: url() format('woff2'), url() format('woff');
}

@font-face {
    font-family: 'Alliance';
    font-weight: 400;
    font-style: normal;
    src: url(fonts/font_126cbb40964f763bb43a818496ad95a5720732bf.woff2) format('woff2'), url(fonts/font_740583d7187831253166eae59d4d4d258d93d838.woff) format('woff');
}

@font-face {
    font-family: 'Alliance';
    font-weight: 600;
    font-style: normal;
    src: url(fonts/font_a1fec76b9367ac57a95b469708a7c72d98ab93a8.woff2) format('woff2'), url(fonts/font_854ce21ea0f2a45f23526952c566b23fd8105e97.woff) format('woff');
}

@font-face {
    font-family: 'Alliance';
    font-weight: 700;
    font-style: normal;
    src: url() format('woff2'), url() format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alliance', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #060710;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    border-bottom: 1px solid rgba(6, 7, 16, 0.08);
}

.navbar-logo {
    height: 32px;
}

.navbar > a {
    text-decoration: none;
    display: inline-flex;
}

.navbar-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

.navbar-links a {
    color: #060710;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.15s;
}

.navbar-links a:hover {
    background: rgba(6, 7, 16, 0.04);
}

.navbar-btn {
    background-color: #ffffff;
    color: #060710;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(6, 7, 16, 0.12);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Alliance', sans-serif;
    transition: background 0.15s, border-color 0.15s;
}

.navbar-btn:hover {
    background-color: #f4f4f5;
}

.navbar-btn-primary {
    background-color: #060710;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Alliance', sans-serif;
    margin-left: 8px;
    transition: opacity 0.15s;
}

.navbar-btn-primary:hover {
    opacity: 0.9;
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #e8eaf6 0%, #ffffff 50%, #ffffff 100%);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 70%;
    background: radial-gradient(ellipse at center, rgba(179, 153, 255, 0.25) 0%, rgba(100, 120, 255, 0.15) 30%, transparent 70%);
    z-index: 0;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

.hero-wave-wrap {
    position: absolute;
    top: 25%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    overflow: hidden;
    animation: waveFadeIn 2.5s linear;
}

@keyframes waveFadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#waveCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.hero-wave-overlay-bottom {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(6, 7, 16, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: 88px;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #969596;
    max-width: 680px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.proposal-card {
    background: #ffffff;
    padding: 48px 40px;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(6, 7, 16, 0.08);
    margin: auto 0;
}

.proposal-card .logo {
    width: 140px;
    height: 40px;
    margin: 0 auto 20px;
}

.proposal-card .logo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proposal-card h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #060710;
    line-height: 40px;
}

.proposal-card p {
    font-size: 16px;
    color: #969596;
    margin-bottom: 28px;
    line-height: 24px;
}

.interact-button {
    font-family: 'Alliance', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: #060710;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.buttons .connect_wallet {
    font-family: 'Alliance', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: #060710;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.buttons .connect_wallet:hover {
    background-color: #1a1b2e;
}

.interact-button:hover {
    background-color: #1a1b2e;
}

.interact-button.secondary {
    background-color: transparent;
    color: #060710;
    border: 1px solid #060710;
}

.interact-button.secondary:hover {
    background-color: rgba(6, 7, 16, 0.04);
}

.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.section-ecosystem {
    background: #060710;
    padding: 120px 30px;
    text-align: center;
}

.section-ecosystem h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

.section-ecosystem .accent {
    color: #969596;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    max-width: 600px;
    margin: 0 auto;
}

.section-products {
    background: #060710;
    padding: 0 30px 120px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    background-size: cover;
    background-position: center;
}

.product-card h5 {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 24px;
    max-width: 360px;
}

.product-card-ondo {
    background-image: linear-gradient(180deg, transparent 0%, rgba(6, 7, 16, 0.8) 100%), var(--media-url-5);
}

.product-card-flux {
    background-image: linear-gradient(180deg, transparent 0%, rgba(6, 7, 16, 0.8) 100%), var(--media-url-6);
}

.section-partners {
    background: #060710;
    padding: 80px 30px 120px;
    text-align: center;
}

.section-partners h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.partners-grid img {
    height: 28px;
    opacity: 0.6;
    filter: brightness(0) invert(1);
}

.section-governance {
    position: relative;
    padding: 120px 30px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a3e 0%, #2d1b69 40%, #4a2c8a 70%, #1a0a3e 100%);
}

.section-governance .governance-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 900px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.section-governance h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.section-governance .accent {
    color: #b399ff;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-governance .buttons {
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.section-governance .interact-button {
    background: #ffffff;
    color: #060710;
}

.section-governance .interact-button:hover {
    background: #e0e0e0;
}

.section-community {
    background: #ffffff;
    padding: 120px 30px;
    text-align: center;
}

.section-community h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 48px;
    color: #060710;
    margin-bottom: 16px;
}

.section-community .accent {
    color: #969596;
    font-size: 20px;
    line-height: 28px;
    max-width: 500px;
    margin: 0 auto 32px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(6, 7, 16, 0.12);
    color: #060710;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: background 0.15s;
}

.social-link.interact-button {
    background-color: transparent;
    color: #060710;
    border: 1px solid rgba(6, 7, 16, 0.12);
}

.social-link.interact-button:hover {
    background-color: rgba(6, 7, 16, 0.04);
    border-color: rgba(6, 7, 16, 0.2);
}

.footer {
    background: #060710;
    padding: 80px 30px 40px;
    color: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-brand svg {
    height: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: #969596;
    max-width: 280px;
    line-height: 22px;
}

.footer-links {
    display: flex;
    gap: 64px;
}

.footer-links div h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #969596;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #b399ff;
}

@media (max-width:768px) {
    .navbar-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }

    .proposal-card {
        padding: 32px 24px;
    }

    .section-ecosystem h3,
    .section-governance h3,
    .section-community h3 {
        font-size: 32px;
        line-height: 40px;
    }
}

:root {
    --media-url-5: url(images/image_6523c78a9ed013f963d81daa734cfa987d74ca48.png);
    --media-url-6: url(images/image_71599030f1d91d0c8191081a13353d81ce80a162.png);
}

.landing-hero {
    min-height: 88vh;
    padding-top: 100px;
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(6, 7, 16, 0.1);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(8px);
    font-size: 13px;
    color: #060710;
    margin-bottom: 24px;
}

.landing-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5b6eff;
    box-shadow: 0 0 10px rgba(91, 110, 255, 0.5);
}

.landing-title {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    color: rgba(0, 0, 0, 0.87);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.landing-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.5;
    color: #969596;
    max-width: 620px;
    margin: 0 auto 36px;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.landing-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 36px;
    color: #7a7a7c;
    font-size: 14px;
}

.landing-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.landing-section {
    padding: 100px 30px;
    background: #ffffff;
}

.landing-section.dark {
    background: #060710;
    color: #ffffff;
}

.landing-section h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 14px;
    text-align: center;
}

.landing-section .section-lead {
    text-align: center;
    color: #969596;
    font-size: 18px;
    line-height: 1.55;
    max-width: 640px;
    margin: 0 auto 48px;
}

.landing-section.dark .section-lead {
    color: rgba(255, 255, 255, 0.62);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.stat-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(6, 7, 16, 0.08);
    background: #fafafa;
}

.landing-section.dark .stat-card {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #969596;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: #060710;
    margin-bottom: 8px;
}

.landing-section.dark .stat-value {
    color: #ffffff;
}

.stat-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #969596;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.step-card {
    padding: 28px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
    color: #b399ff;
    background: rgba(179, 153, 255, 0.12);
    margin-bottom: 16px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
}

.landing-cta-block {
    text-align: center;
    padding: 88px 30px 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f5fa 100%);
}

.landing-cta-block h3 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #060710;
}

.landing-cta-block p {
    color: #969596;
    font-size: 18px;
    margin-bottom: 28px;
}

.rewards-page .hero {
    min-height: 78vh;
    padding-top: 100px;
}

@media (max-width:768px) {
    .landing-title {
        font-size: 38px;
    }

    .landing-section h3 {
        font-size: 28px;
    }
}