
/* custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #060d20;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5b66dd, #414cd3);
    border-radius: 6px;
    border: 2px solid #060d20;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #6c77f0, #5b66dd);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
    overflow-x: hidden;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    touch-action: manipulation;
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    position: relative;
    min-height: 100%;
    background: #0a0e27;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    text-transform: lowercase;
}

.scroll-arrow {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* vertical side nav - shows when scrolled */
.side-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.side-nav.visible {
    opacity: 1;
    pointer-events: auto;
}

.side-nav-link {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    transition: all 0.3s ease;
}

.side-nav-link::before {
    content: attr(data-label);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.side-nav-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.side-nav-link:hover .nav-dot {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.3);
}

.side-nav-link.active .nav-dot {
    background: #5aec99;
    border-color: #5aec99;
    box-shadow: 0 0 12px rgba(90, 236, 153, 0.6);
    width: 12px;
    height: 12px;
}

.side-nav-link.active::before {
    color: #5aec99;
    opacity: 1;
    transform: translateX(0);
}

/* hide old header */
.header-container-wrapper {
    display: none;
}

.header-btn-wrap {
    display: none;
}

/* particles background */
.particles-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    filter: blur(80px);
}

/* hero section */
.hero {
    overflow: hidden;
    padding: 40px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 1200px 900px at 25% 25%, rgba(91, 102, 221, 0.12), transparent 60%),
        radial-gradient(ellipse 900px 700px at 75% 75%, rgba(90, 236, 153, 0.08), transparent 60%);
    pointer-events: none;
    animation: gradient-shift 25s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-asymmetric-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    min-height: 80vh;
    align-items: center;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy-column {
    text-align: left;
    max-width: 600px;
}

/* logo */
.hero-copy-column::before {
    content: '';
    display: block;
    width: 240px;
    height: 72px;
    margin: 0 0 35px 0;
    background-image: url('https://f.hubspotusercontent40.net/hubfs/5118396/Icons%20and%20Illustrations/Header%20Icons/blocknative%20dark%20mode%20logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    filter: drop-shadow(0 4px 20px rgba(91, 102, 221, 0.25));
    animation: float 3s ease-in-out infinite;
}

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

.hero h2 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
}

.bleeding-text {
    color: #ff6b6b;
    animation: soft-bleed 3s ease-in-out infinite;
}

@keyframes soft-bleed {
    0%, 100% { 
        color: #ff6b6b;
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.2);
    }
    50% { 
        color: #ff8585;
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
    }
}

.hero-subheading {
    max-width: 680px;
    margin: 0 0 45px 0;
}

.hero-subheading p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.btns-group {
    display: flex;
    justify-content: flex-start;
}

.wallet-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 28px 32px;
    max-width: 500px;
}

.wallet-cta-box .btns-group {
    margin: 0;
}

.cta-box-label {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    text-align: left;
}

.cta-box-note {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 14px;
    text-align: left;
    letter-spacing: 0.5px;
}


.c-mb-6, .c-my-6 {
    margin-bottom: unset !important;
}

/* hero customizations */
.recovery-highlight {
    font-size: 19px;
    font-weight: 700;
    color: #5aec99;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin: 30px 0 35px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.trust-badges span {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.trust-badges span:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.wallet-connect-btn {
    max-width: 400px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(91, 102, 221, 0.15), rgba(90, 236, 153, 0.1)) !important;
    color: #fff !important;
    border: 1px solid rgba(91, 102, 221, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    letter-spacing: 0.3px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.wallet-connect-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(91, 102, 221, 0.25), rgba(90, 236, 153, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wallet-connect-btn:hover::before {
    opacity: 1;
}

.wallet-connect-btn:hover,
.wallet-connect-btn:active {
    border-color: rgba(91, 102, 221, 0.5);
    box-shadow: 0 6px 24px rgba(91, 102, 221, 0.3);
    transform: translateY(-2px);
}

.live-indicator {
    text-align: left;
    margin-top: 25px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.trusted-by-hero {
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trusted-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.trusted-logos img {
    height: 28px;
    width: auto;
    opacity: 0.5;
    transition: all 0.3s ease;
    filter: brightness(2) grayscale(0.2);
}

.trusted-logos img:hover {
    opacity: 0.9;
    filter: brightness(2.2) grayscale(0);
    transform: translateY(-2px);
}

.hero-stats-floating {
    position: relative;
    height: 600px;
    display: grid;
    place-items: center;
}

.hero-visual-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-visual-element::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(91, 102, 221, 0.12), rgba(90, 236, 153, 0.04) 50%, transparent 70%);
    animation: glow 6s ease-in-out infinite;
    z-index: 0;
    border-radius: 50%;
}

.hero-visual-element lottie-player {
    width: 300px !important;
    height: 300px !important;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.floating-stat-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(91, 102, 221, 0.15), rgba(90, 236, 153, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(91, 102, 221, 0.3);
    border-radius: 12px;
    padding: 20px 28px;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(91, 102, 221, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.floating-stat-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(91, 102, 221, 0.5);
    box-shadow: 0 16px 48px rgba(91, 102, 221, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    background: linear-gradient(135deg, rgba(91, 102, 221, 0.2), rgba(90, 236, 153, 0.15));
}

.floating-stat-card.stat-1 {
    top: 10%;
    right: 15%;
    animation: float-1 4s ease-in-out infinite;
}

.floating-stat-card.stat-2 {
    top: 45%;
    right: -5%;
    animation: float-2 5s ease-in-out infinite;
}

.floating-stat-card.stat-3 {
    bottom: 15%;
    left: 10%;
    animation: float-3 4.5s ease-in-out infinite;
}

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

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -12px); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, 10px); }
}

.floating-stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #5aec99, #2fcd70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(90, 236, 153, 0.3));
    line-height: 1.2;
    margin-bottom: 6px;
}

.floating-stat-card .stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #5aec99;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(90, 236, 153, 0.8);
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
        box-shadow: 0 0 12px rgba(90, 236, 153, 0.8), 0 0 0 0 rgba(90, 236, 153, 0.4); 
    }
    50% { 
        opacity: 0.6; 
        transform: scale(0.95); 
        box-shadow: 0 0 6px rgba(90, 236, 153, 0.4), 0 0 0 8px rgba(90, 236, 153, 0); 
    }
}

/* companies section */
.companies-row {
    display: none;
}

/* how it works */
.how-it-works-row {
    margin-top: 120px;
    padding: 0 40px 120px;
    position: relative;
}

.how-it-works-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #5b66dd, #5aec99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-title {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.step-description {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
}

/* data visualization */
.data-viz-row {
    margin-top: 120px;
    padding: 0 40px 120px;
    position: relative;
}

.main-chart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

/* monthly growth chart */
.growth-graph {
    position: relative;
    height: 350px;
    padding: 20px 0;
}

.growth-line {
    position: relative;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(90, 236, 153, 0.08) 0%, 
        rgba(91, 102, 221, 0.05) 50%, 
        transparent 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.growth-line::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,85 Q8.33,78 16.66,72 T25,66 33.33,56 41.66,49 50,42 58.33,33 66.66,24 75,16 83.33,9 91.66,3 100,0" fill="none" stroke="rgba(90,236,153,0.3)" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat;
    background-size: 100% 100%;
}

.growth-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #5aec99;
    border: 3px solid #060d20;
    border-radius: 50%;
    transform: translate(-50%, 0);
    cursor: pointer;
    transition: all 0.3s;
}

.growth-point:hover {
    transform: translate(-50%, 0) scale(1.4);
    box-shadow: 0 0 20px rgba(90, 236, 153, 0.6);
}

.growth-point.active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #5aec99, #2fcd70);
    box-shadow: 0 0 25px rgba(90, 236, 153, 0.5);
}

.growth-value {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.growth-point:hover .growth-value,
.growth-point.active .growth-value {
    opacity: 1;
}

.growth-point.active .growth-value {
    font-size: 16px;
    color: #5aec99;
    font-weight: 700;
}

.growth-months {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 20px;
}

.growth-months span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

/* recovery breakdown */
.recovery-breakdown {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 35px 30px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.breakdown-item.total {
    padding-top: 20px;
    margin-top: 12px;
    border-top: 2px solid rgba(91, 102, 221, 0.2);
}

.breakdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.breakdown-value {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.breakdown-item.total .breakdown-value {
    font-size: 32px;
    color: #5aec99;
}

.breakdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 8px 0;
}

.breakdown-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    text-align: center;
}

/* overview section */
.overview-row {
    margin-top: 0;
    padding: 80px 40px;
    position: relative;
    background: transparent;
    border-top: none;
}

.overview-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.overview-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.overview-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.overview-feature:last-child {
    border-bottom: none;
}

.overview-feature:hover {
    padding-left: 12px;
}

.feature-number {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    letter-spacing: 0.5px;
    min-width: 30px;
}

.overview-feature:hover .feature-number {
    color: rgba(255, 255, 255, 0.5);
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.feature-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* data sources */
.data-sources-row {
    margin-top: 80px;
    padding: 50px 0;
}

.data-sources-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.source-item {
    text-align: center;
}

.source-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.source-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.source-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* footer */
.site-footer {
    background: #060d20;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 60px;
    padding: 0 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo img {
    height: 36px;
    margin-bottom: 18px;
    opacity: 0.9;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.footer-links-group {
    display: flex;
    gap: 60px;
}

.footer-link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-column a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.footer-link-column a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-disclaimer {
    font-size: 11px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.3px;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* data visualization */
.data-viz-row {
    margin-top: 80px;
    padding: 0 20px;
}

.charts-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.chart-card {
    background: transparent;
    border: none;
    border-left: 2px solid rgba(91, 102, 221, 0.3);
    border-radius: 0;
    padding: 30px 40px;
    transition: all 0.3s;
}

.chart-card:hover {
    border-left-color: #5aec99;
    padding-left: 50px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.chart-graph {
    margin-bottom: 20px;
}

.chart-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    text-align: left;
}

/* bar chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 40px;
    height: 140px;
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bar {
    width: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bar.active {
    background: linear-gradient(180deg, #5aec99 0%, rgba(90, 236, 153, 0.6) 100%);
}

.bar-label {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.bar.active .bar-label {
    color: #5aec99;
}

.bar-month {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.bar-arrow {
    font-size: 32px;
    color: rgba(90, 236, 153, 0.5);
    align-self: center;
    margin-bottom: 25px;
}

/* efficiency bars */
.efficiency-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.efficiency-item {
    display: grid;
    grid-template-columns: 50px 1fr 40px;
    gap: 15px;
    align-items: center;
}

.efficiency-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.efficiency-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.efficiency-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #5b66dd, #5aec99);
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.efficiency-value {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-align: right;
}

/* stats list */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.stats-list-item.total {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-list-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.stats-list-value {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.stats-list-item.total .stats-list-value {
    color: #5aec99;
    font-size: 26px;
}

.stats-list-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.03);
    margin: 4px 0;
}

/* final cta */
.final-cta-row {
    margin-top: 120px;
    padding: 0 40px 120px;
}

.final-cta-box {
    background: linear-gradient(135deg, rgba(91, 102, 221, 0.06) 0%, rgba(90, 236, 153, 0.03) 100%);
    border: 1px solid rgba(91, 102, 221, 0.2);
    border-radius: 16px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 102, 221, 0.8), rgba(90, 236, 153, 0.8), transparent);
}

.final-cta-stats {
    display: flex;
    justify-content: center;
    gap: 70px;
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.final-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.final-stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #5aec99, #2fcd70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.final-cta-title {
    font-size: 36px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.final-cta-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-box .wallet-connect-btn {
    max-width: 400px;
}

.final-cta-trust {
    margin-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

/* unique reviews showcase */
.reviews-showcase-row {
    margin-top: 120px;
    padding: 0 40px 120px;
    position: relative;
}

.reviews-showcase-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 0%, #5aec99 50%, #5b66dd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(90, 236, 153, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5aec99, transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 60px;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.overview-title {
    font-size: 48px !important;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #fff 0%, #5aec99 50%, #5b66dd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    text-shadow: 0 0 40px rgba(90, 236, 153, 0.3);
}

.overview-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #5aec99, transparent);
    border-radius: 2px;
}

.reviews-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

/* featured review */
.review-featured {
    background: linear-gradient(135deg, rgba(91, 102, 221, 0.12), rgba(90, 236, 153, 0.06));
    border: 1px solid rgba(91, 102, 221, 0.4);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    margin-bottom: 50px;
    overflow: hidden;
    max-width: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.review-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5b66dd, #5aec99);
}

.review-amount-badge {
    display: inline-block;
    background: linear-gradient(90deg, #2fcd70, #5aec99);
    color: #000;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.review-quote {
    font-size: 28px;
    line-height: 1.5;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.review-address {
    font-family: 'Inconsolata', monospace;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.review-network {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.review-verified {
    font-size: 14px;
    color: #5aec99;
    font-weight: 600;
}

/* mobile review cards - hidden on desktop */
.reviews-mobile-card {
    display: none;
}

/* scrolling reviews */
.reviews-scroll-container {
    overflow: hidden;
    margin: 30px 0;
    position: relative;
}

.reviews-scroll-container::before,
.reviews-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.reviews-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(10, 14, 39, 1), rgba(10, 14, 39, 0));
}

.reviews-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(10, 14, 39, 1), rgba(10, 14, 39, 0));
}

.reviews-scroll-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

.reviews-scroll-container.reverse .reviews-scroll-track {
    animation: scroll-right 45s linear infinite;
}

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

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

.reviews-scroll-track:hover {
    animation-play-state: paused;
}

.review-card {
    min-width: 380px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(91, 102, 221, 0.3);
    transform: translateY(-5px);
}

.review-card-amount {
    font-size: 22px;
    font-weight: 700;
    color: #5aec99;
    margin-bottom: 15px;
}

.review-card-text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    min-height: 80px;
}

.review-card-author {
    font-family: 'Inconsolata', monospace;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-card-author span {
    color: #5aec99;
    font-size: 14px;
}

/* powered by */
.powered-by-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
}

/* responsive */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 30px;
    }
    
    .hero h2 {
        font-size: 36px;
        letter-spacing: -1px;
        margin-bottom: 22px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
        color: #fff;
        font-weight: 700;
    }
    
    .hero-copy-column::before {
        margin-bottom: 30px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    }
    
    .hero-asymmetric-layout {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
        min-height: auto;
        position: relative;
    }
    
    .hero-copy-column {
        max-width: 100%;
    }
    
    .hero-copy-column::before {
        width: 200px;
        height: 60px;
        margin: 0 0 35px 0;
    }
    
    .trust-badges {
        gap: 10px;
    }
    
    .trust-badges span {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .hero-stats-floating {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: auto;
        width: auto;
        display: block;
        z-index: 0;
        opacity: 0.15;
        pointer-events: none;
    }
    
    .floating-stat-card {
        display: none !important;
    }
    
    .hero-visual-element {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-visual-element::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(91, 102, 221, 0.2), transparent 60%);
        animation: glow 4s ease-in-out infinite;
        z-index: 0;
        border-radius: 50%;
    }
    
    .hero-visual-element lottie-player {
        width: 600px !important;
        height: 600px !important;
        opacity: 1;
        filter: none;
        position: relative;
        z-index: 1;
        transform: rotate(-15deg);
    }
    
    .hero-copy-column {
        padding-bottom: 0;
        position: relative;
        z-index: 2;
    }
    
    .hero {
        padding: 40px 0 100px;
        min-height: auto;
    }
    
    .hero-asymmetric-layout {
        padding-top: 0;
        padding-bottom: 60px;
    }
    
    .companies-row {
        display: none;
    }
    
    .trusted-by-hero {
        margin-top: 50px;
        padding-top: 35px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0;
    }
    
    .trusted-label {
        margin-bottom: 25px;
    }
    
    .trusted-logos {
        gap: 30px;
        justify-content: flex-start;
    }
    
    .trusted-logos img {
        height: 24px;
        opacity: 0.6;
    }
    
    .overview-row {
        padding-top: 80px;
        margin-top: 0;
        border-top: none;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 45px;
    }
    
    .section-title::after {
        width: 50px;
        height: 2px;
        bottom: -12px;
    }
    
    .overview-title {
        font-size: 32px !important;
        letter-spacing: -1px;
        margin-bottom: 40px;
    }
    
    .overview-title::after {
        width: 50px;
        height: 2px;
        bottom: -12px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .how-it-works-row {
        padding: 0 20px 80px;
    }
    
    .steps-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    
    .step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 40px !important;
        margin: 0 0;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .step-item::before {
        content: attr(data-step);
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 120px;
        font-weight: 800;
        background: linear-gradient(135deg, rgba(91, 102, 221, 0.08), rgba(90, 236, 153, 0.04));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        pointer-events: none;
        opacity: 0.5;
    }
    
    .step-item:hover {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(91, 102, 221, 0.15);
    }
    
    .step-number {
        display: none;
    }
    
    .step-title {
        text-align: center;
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 600;
        color: #fff;
        position: relative;
        z-index: 1;
        padding: 0;
        max-width: 100%;
    }
    
    .step-description {
        text-align: center;
        font-size: 13px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.7);
        position: relative;
        z-index: 1;
        padding: 0;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .reviews-showcase-row {
        padding: 0 20px 80px;
    }
    
    .review-featured {
        padding: 28px 22px;
        margin-bottom: 25px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(91, 102, 221, 0.1), rgba(90, 236, 153, 0.05));
        border: 1px solid rgba(91, 102, 221, 0.3);
        border-left: 4px solid #5aec99;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .review-featured::before {
        display: none;
    }
    
    .review-amount-badge {
        font-size: 22px;
        padding: 10px 20px;
        margin-bottom: 16px;
        background: #5aec99;
        color: #000;
        font-weight: 700;
    }
    
    .review-quote {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 18px;
        color: #fff;
    }
    
    .review-author {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .review-address {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .review-network {
        font-size: 12px;
        opacity: 0.6;
    }
    
    .review-verified {
        font-size: 13px;
        color: #5aec99;
    }
    
    /* hide horizontal scroll, show vertical stack instead */
    .reviews-scroll-container {
        display: none !important;
    }
    
    /* show mobile review cards */
    .reviews-mobile-card {
        display: block !important;
    }
    
    /* show reviews as vertical stack on mobile */
    .reviews-showcase {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .review-card {
        min-width: auto;
        width: 100%;
        padding: 22px 18px;
        margin: 0;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid rgba(91, 102, 221, 0.4);
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .review-card:active {
        transform: translateX(4px);
        border-left-color: #5aec99;
    }
    
    .review-card-amount {
        font-size: 20px;
        margin-bottom: 12px;
        font-weight: 700;
        color: #5aec99;
    }
    
    .review-card-text {
        font-size: 14px;
        min-height: auto;
        line-height: 1.65;
        margin-bottom: 14px;
        color: rgba(255, 255, 255, 0.85);
    }
    
    .review-card-author {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .data-sources-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .source-divider {
        width: 50px;
        height: 1px;
    }
    
    .final-cta-box {
        padding: 40px 30px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .final-cta-stats {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 30px;
    }
    
    .main-chart-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .growth-graph {
        height: 250px;
    }
    
    .overview-content {
        padding: 35px 25px;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .side-nav {
        right: 15px;
        gap: 14px;
        transform: translateY(-50%) scale(0.9);
    }
    
    .side-nav-link::before {
        display: none;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
    
    .side-nav-link.active .nav-dot {
        width: 14px;
        height: 14px;
    }
    
    .wallet-connect-btn {
        width: auto;
        max-width: 100%;
        min-width: 200px;
        font-size: 15px;
        font-weight: 600;
        padding: 18px 32px;
        border-radius: 8px;
        background: #fff !important;
        color: #000 !important;
        border: none;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        position: relative;
        overflow: hidden;
        letter-spacing: 0px;
        text-align: center;
        transition: all 0.2s ease;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        display: inline-block;
        margin: 0;
    }
    
    .wallet-connect-btn::after {
        display: none;
    }
    
    .wallet-connect-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .hero-subheading {
        margin-bottom: 40px;
    }
    
    .hero-subheading p {
        font-size: 14px;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
        font-weight: 500;
    }
    
    .btns-group {
        display: none;
    }
    
    .wallet-cta-box {
        display: block;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 24px 20px;
        margin-bottom: 0;
    }
    
    .wallet-cta-box {
        background: rgba(255, 255, 255, 0.04);
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .wallet-cta-box .btns-group {
        display: block !important;
        text-align: center;
    }
    
    .cta-box-label {
        font-size: 13px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 16px;
        letter-spacing: 0.3px;
        text-align: center;
        text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    }
    
    .cta-box-note {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.75);
        margin-top: 12px;
        text-align: center;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    }
    
    .trusted-by-hero {
        display: block;
        margin-top: 50px;
        padding-top: 35px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 0;
    }
    
    .trusted-label {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.4);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 25px;
        font-weight: 500;
    }
    
    .trusted-logos {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .trusted-logos img {
        height: 24px;
        width: auto;
        opacity: 0.6;
        transition: all 0.3s ease;
        filter: brightness(2) grayscale(0.2);
    }
    
    .trusted-logos img:hover {
        opacity: 0.9;
        filter: brightness(2.2) grayscale(0);
        transform: translateY(-2px);
    }
    
    .recovery-highlight {
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.95);
    }
    
    .live-indicator {
        font-size: 12px;
    }
    
    .info-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-link-column {
        gap: 10px;
    }
    
    .footer-bottom {
        padding: 25px 20px 0;
        gap: 15px;
    }
    
    .footer-disclaimer {
        font-size: 10px;
    }
    
    .footer-copyright {
        font-size: 10px;
    }
    
    .scroll-indicator {
        bottom: 20px;
        transform: translateX(-50%) scale(0.9);
    }
    
    /* better touch targets */
    .trust-badges span,
    .floating-stat-card,
    .review-card {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}

/* very small screens */
@media (max-width: 380px) {
    .hero h2 {
        font-size: 28px;
    }
    
    .hero-copy-column::before {
        width: 150px;
        height: 45px;
    }
    
    .wallet-connect-btn {
        font-size: 14px;
        padding: 16px 28px;
        border-radius: 10px;
    }
    
    .floating-stat-card {
        padding: 12px 16px;
    }
    
    .floating-stat-card .stat-value {
        font-size: 20px;
    }
    
    .trusted-logos {
        gap: 20px;
    }
    
    .trusted-logos img {
        height: 20px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 45px;
    }
    
    .step-item {
        padding: 28px 32px !important;
        gap: 15px;
    }
    
    .step-number {
        font-size: 40px;
    }
    
    .review-featured {
        padding: 25px 18px;
    }
    
    .review-quote {
        font-size: 16px;
    }
    
    .review-amount-badge {
        font-size: 18px;
        padding: 8px 18px;
    }
    
    .review-card {
        padding: 20px 18px;
    }
    
    .review-card-amount {
        font-size: 20px;
    }
    
    .review-card-text {
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .hero-asymmetric-layout {
        gap: 60px;
        padding: 30px;
    }
    
    .hero h2 {
        font-size: 42px;
    }
    
    .hero-stats-floating {
        height: 550px;
    }
    
    .side-nav {
        right: 25px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .step-item {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-left: none;
        border-top: 3px solid rgba(91, 102, 221, 0.3);
        padding-top: 25px;
        padding-left: 0;
    }
    
    .step-item:hover {
        border-top-color: #5aec99;
    }
    
    .step-number {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .step-title {
        text-align: center;
    }
    
    .step-description {
        text-align: center;
    }
    
    .main-chart-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .overview-features {
        grid-template-columns: 1fr;
    }
}

/* landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero-asymmetric-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .hero-copy-column::before {
        width: 140px;
        height: 42px;
        margin: 0 0 20px 0;
    }
    
    .hero h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-subheading p {
        font-size: 14px;
    }
    
    .hero-stats-floating {
        height: 400px;
        margin-top: 0;
    }
    
    .floating-stat-card {
        padding: 12px 16px;
    }
    
    .floating-stat-card .stat-value {
        font-size: 20px;
    }
}

/* carousel styles */
.rc-rcbrand-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.rc-rcbrand-inner {
    position: relative;
    overflow: hidden;
}

.rc-rcbrand-ul {
    display: flex;
    list-style: none;
    position: relative;
    left: 0;
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.rc-rcbrand-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    flex-shrink: 0;
}

.rc-rcbrand-item img {
    max-height: 40px;
    width: auto;
    opacity: 0.4;
    transition: opacity 0.3s;
    filter: brightness(2) grayscale(0.3);
}

.rc-rcbrand-item:hover img {
    opacity: 0.7;
    filter: brightness(2) grayscale(0);
}

/* language switcher */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-selector-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
}

.current-lang {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.lang-arrow {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
}

.lang-selector-btn:hover .lang-arrow {
    transform: translateY(2px);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 160px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.lang-dropdown::-webkit-scrollbar {
    width: 6px;
}

.lang-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.lang-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.lang-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.lang-code {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 30px;
}

.lang-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.lang-option:hover .lang-name {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .language-switcher {
        top: 15px;
        right: 15px;
    }
    
    .lang-selector-btn {
        padding: 8px 12px;
    }
    
    .current-lang {
        font-size: 12px;
    }
    
    .lang-arrow {
        font-size: 9px;
    }
}