:root {
    --color-bg: #000000;
    --color-text: #dedede;
    --color-text-highlight: #fff;
    --color-gold: #E5B769;
    --font-main: 'Inter', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}




* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-osx-font-smoothing: grayscale;
}

.text-gold {
    color: var(--color-gold) !important;
}

.desktop-only {
    display: block;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-only {
        display: block !important;
    }
}


img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes logoScroller {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-distance, -50%));
    }
}

@keyframes shine {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

@-webkit-keyframes shine {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

@-moz-keyframes shine {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}

@-o-keyframes shine {
    0% {
        background-position: -200%;
    }

    100% {
        background-position: 200%;
    }
}


@keyframes fadeInSmooth {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes fadeDownSmooth {
    0% {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 30px));
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


@keyframes fadeUpBlur {
    0% {
        opacity: 0;
        filter: blur(4px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}

@keyframes fadeDownBlur {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes fadeBlur {
    0% {
        opacity: 0;
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes fadeUpBlurHero {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes heroFeaturesMobileMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}



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

.logo img {
    height: 85px;
}

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

.icon-user-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.icon-user-link:hover {
    opacity: 0.8;
}

.btn-login-text {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}


.btn-get-access {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    z-index: 1;


    box-shadow:
        3px 3px 9px 0px rgba(0, 0, 0, 0.64),
        10px 12px 16px 0px rgba(0, 0, 0, 0.55),
        23px 26px 21px 0px rgba(0, 0, 0, 0.33),
        42px 47px 25px 0px rgba(0, 0, 0, 0.10),
        65px 73px 27px 0px rgba(0, 0, 0, 0.01);
}


.btn-get-access {
    background: linear-gradient(#000, #000) padding-box,
        linear-gradient(60deg, #000 30%, var(--color-gold) 100%) border-box;
    border: 1px solid transparent;
}


.icon-user {
    stroke: #dedede;

    stroke: #fff;
    opacity: 0.8;
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.icon-user:hover {
    opacity: 1;
}


.hero-section {
    position: relative;
    padding-top: 140px;

    padding-bottom: 0 !important;
    text-align: center;
    background: transparent;

    overflow: hidden;

}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/background-hero.webp') no-repeat center 50px;
    background-size: 1500px auto;
    background-color: #000000;
    opacity: 0;
    animation: fadeInSmooth 3s ease-out forwards;
    z-index: 0;
    pointer-events: none;
}


.hero-mask {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: #000000;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.hero-lights {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1200px;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
}



.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-text-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-wrapper .pill-label {
    opacity: 0;
    animation: fadeDownBlur 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

.hero-text-wrapper .hero-subtext {
    opacity: 0;
    animation: fadeBlur 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.0s;
}

.hero-text-wrapper .hero-actions {
    opacity: 0;
    animation: fadeUpBlurHero 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.3s;
}

.hero-text-wrapper .hero-features {
    opacity: 0;
    animation: fadeBlur 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.6s;
}

.hero-text-wrapper .disclaimer.text-white {
    opacity: 0;
    animation: fadeBlur 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.7s;
}

.pill-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(229, 183, 105, 0.15);
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 14px;
    margin-bottom: 24px;
    isolation: isolate;
}


.pill-stars-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.pill-label-text {
    position: relative;
    display: inline-block;
    color: #E5B769;
    font-size: 14px;
    font-weight: inherit;
    font-family: inherit;
    background: linear-gradient(to right, #E5B769 0%, #FFE5BA 10%, #E5B769 20%, #E5B769 100%);
    background-size: 200% 100%;
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s infinite linear;
    animation-fill-mode: forwards;
}


.pill-label::before {
    content: "";
    position: absolute;
    inset: -1px;

    border-radius: inherit;
    padding: 1px;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;

    pointer-events: none;
    z-index: -1;
}

h1.h1-gradient-text {
    display: block;
    text-align: center;
    margin: 0 auto 45px;
    max-width: 900px;
    font-size: 45px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -1px;
    color: #ffffff;
}


.text-segment {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
    color: #ffffff;
}

.text-segment.animate {
    animation: blurInUp 0.4s forwards;
}

@keyframes blurInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.text-segment.line {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-subtext {
    margin-bottom: 24px;
    margin-top: -30px;
    color: #dedede;
    font-size: 20px;
}

.hero-subtext .text-white {
    color: #dedede;
    font-size: 20px;
}

.btn-primary {
    position: relative;
    padding: 15px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;

    background: linear-gradient(to right, #DFB266 0%, #FFE5BA 50%, #DFB266 100%);

    box-shadow: 0 197px 55px rgba(224, 181, 106, 0),
        0 126px 50px rgba(224, 181, 106, 0.02),
        0 71px 43px rgba(224, 181, 106, 0.05),
        0 32px 32px rgba(224, 181, 106, 0.09),
        0 8px 17px rgba(224, 181, 106, 0.11);
}


.btn-primary span {
    position: relative;
    z-index: 1;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;


    background: linear-gradient(to right, #000000 0%, #6E4F19 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 15%, #FFFFFF 50%, rgba(255, 255, 255, 0) 85%);
    pointer-events: none;
    z-index: 4;
    border-radius: 100px 100px 0 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-hero-secondary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    z-index: 1;

    background: linear-gradient(#000, #000) padding-box,
        linear-gradient(60deg, #000 30%, #E5B769 100%) border-box;
    border: 1px solid transparent;

    box-shadow:
        3px 3px 9px 0px rgba(0, 0, 0, 0.64),
        10px 12px 16px 0px rgba(0, 0, 0, 0.55),
        23px 26px 21px 0px rgba(0, 0, 0, 0.33),
        42px 47px 25px 0px rgba(0, 0, 0, 0.10);
}

.btn-hero-secondary:hover {
    opacity: 0.9;
}


.dashboard-wrapper {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 10px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #E5B769 0%, #56411E 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-dashboard {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.hero-features-marquee-rail {
    display: flex;
    align-items: center;
}

.hero-features-marquee-track {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-features-marquee-track[aria-hidden="true"] {
    display: none;
}

.hero-features-marquee-track span:not(:last-child)::after {
    content: "·";
    margin-left: 16px;
    font-weight: bold;
}



.hero-features2 {
    flex-direction: initial;
    font-size: 18px;
    z-index: 3;
    align-items: center;
    margin-bottom: 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    color: var(--color-gold);
}

.hero-features2 span:not(:last-child)::after {
    content: "·";
    margin-left: 16px;
    font-weight: bold;
}



.disclaimer {
    font-size: 18px;
    color: #ffffff;
}

.dashboard-preview {
    margin-top: 100px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    padding-bottom: 0;
}

.dashboard-pattern-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 400px;
    background-color: #000000;
    overflow: hidden;
    z-index: 0;
}

.flickering-grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.dashboard-pattern-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #000000 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.dashboard-pattern-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #000000 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.dashboard-light-horizontal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    max-width: none;
    height: auto;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: fadeDownSmooth 1.5s ease-out 1s forwards;
}

.dashboard-glow-wrapper {
    position: relative;
    display: inline-block;
    padding: 15px;
    border-radius: 12px;
    z-index: 3;
    background: linear-gradient(to bottom, #E5B769 0%, #56411E 100%);
    border: 1px solid transparent;
    background-clip: padding-box;
    opacity: 0;
    filter: blur(4px);
    transform: translateY(20px);
    animation: fadeUpBlur 1.5s ease-out forwards;
}

.dashboard-glow-wrapper::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(to bottom, #FFFFFF 0%, #000000 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.dashboard-glow-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 0px;
    pointer-events: none;
    z-index: 10;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 1;
}

.dashboard-shadow-container {
    width: 100vw;
    min-height: 300px;
    background-color: #000000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    margin-top: -80px;
    overflow: hidden;
    contain: layout style paint;
}

.dashboard-shadow-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    box-shadow: inset 0 20px 22.8px -22px rgba(229, 183, 105, 0.25);
    pointer-events: none;
    z-index: 1;
}


.carousel-container {
    width: 100%;
    background-color: #000000;
    padding: 0 0 80px 0;
    position: relative;
    overflow: visible;
    z-index: 50;
}

.carousel-headline {
    text-align: center;
    color: #dedede;
    font-size: 20px;
    margin-bottom: 30px;
    padding: 0 20px;
}

.carousel-wrapper {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}


.carousel-wrapper::before,
.carousel-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 100;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 60px;
    align-items: center;
    will-change: transform;
    width: fit-content;
}

.carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.carousel-item img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(1) brightness(0.7);
    transition: opacity 0.3s ease;
}

.carousel-item:hover img {
    opacity: 1;
    filter: grayscale(0) brightness(1);
}

@media (min-width: 1024px) {
    .carousel-item img {
        max-width: 200px;
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .carousel-wrapper {
        width: 90%;
    }

    .carousel-item img {
        max-width: 120px;
        max-height: 60px;
    }

    .carousel-track {
        gap: 40px;
    }
}


.performance-container {
    width: 100%;
    background-color: #000000;
    position: relative;
    margin: 0 auto;
    padding-top: 100px;
}

.performance-section {
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 990;
    padding: 100px 0;
}

.performance-section .container {
    text-align: left;
}

.performance-text-wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.performance-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background-color: rgba(229, 183, 105, 0.15);

    border: 1px solid transparent;
    color: #E5B769;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 14px;

    margin-bottom: 24px;
    isolation: isolate;
}

.performance-pill::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
    z-index: -1;
}

.performance-title {
    display: block;
    text-align: left;
    width: 100%;
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 40px;
    margin-top: 0;
    max-width: 900px;
}

.performance-description {
    text-align: left;
    margin-bottom: 24px;
    margin-top: -30px;
    color: #dedede;
    max-width: 900px;
    font-size: 20px;
}

.performance-description .text-white {
    color: #ffffff;
}

.stats-container {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-number {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(to bottom, #E5B769 0%, #302614 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 8px;
}

.stat-text {
    font-size: 14px;
    color: #dedede;
    line-height: 1.5;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, #000000 0%, #E5B769 50%, #000000 100%);
    margin: 20px 0;
    flex-shrink: 0;
}

.performance-data {
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 0;
    margin-top: 60px;
    margin-bottom: 60px;
    align-items: stretch;
    background: linear-gradient(32deg, #483B25 0%, #E5B769 100%);
    border-radius: 15px;
    border: 1px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: hidden;
}

.performance-data::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 1px;
    background: linear-gradient(0deg, #FFDFA8 0%, #7A5C2E 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.performance-chart-panel {
    background: transparent;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100% !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.chart-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}

.chart-subtitle {
    font-size: 16px;
    color: #dedede;
}

.chart-tabs {
    display: flex;
    gap: 8px;
}

.chart-tab {
    padding: 6px 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.chart-tab.active {
    background: #E5B769;
    color: #000000;
    border-color: #E5B769;
}

.chart-tab.inactive,
.risk-reward-ratio {
    background: transparent !important;
    color: #ffffff !important;
    padding: 6px 16px;
    border: none !important;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
    position: relative;
    isolation: isolate;
    cursor: default;
}

.chart-tab.inactive::before,
.risk-reward-ratio::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 5px;
    background: linear-gradient(to right, #5C4A2A 0%, #E5B769 100%);
    z-index: -2;
}

.chart-tab.inactive::after,
.risk-reward-ratio::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    background: #5C4A2A;
    z-index: -1;
}

.chart-container {
    height: 300px;
    margin-bottom: 30px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.performance-chart-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.chart-metrics {
    display: flex;
    gap: 100px;
}

.chart-metric {
    flex: 1;
}

.metric-label {
    font-size: 16px;
    color: #dedede;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.performance-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    background: transparent;
}

.stat-panel {
    background: transparent;
    padding: 30px;
    margin-top: 0;
}

.stat-panel:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-panel:last-child {
    flex: 1;
}

.stat-panel-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stat-panel-title {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.win-rate-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.win-rate-chart {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.donut-chart {
    display: block;
    width: 100%;
    height: 100%;
}

#win-rate-text {
    font-size: 18px !important;
}

#win-rate-progress {
    transition: stroke-dashoffset 2s ease-out;
}

.win-rate-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.gold {
    background: #E5B769;
}

.legend-dot.gray {
    background: #333;
}

.legend-text {
    font-size: 12px;
    color: #dedede;
}

.legend-text.gold {
    color: var(--color-gold);
    font-weight: 500;
}

.risk-reward-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.progress-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.progress-label {
    font-size: 12px;
    color: #dedede;
}

.progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #E5B769, #FFE5BA);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.3, 1);
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.check-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    z-index: 1;
    flex-shrink: 0;
}

.check-icon svg {
    display: block;
    position: relative;
    z-index: 2;
}

.check-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #FFDEA7 0%, #FFDEA7 100%);
    z-index: -2;
}

.check-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #E5B769 0%, #2F2516 100%);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    z-index: -1;
}


.performance-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-disclaimer {
    font-size: 16px;
    color: #dedede;
    max-width: 60%;
}

.btn-methodology {
    position: relative;
    padding: 15px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: linear-gradient(to right, #DFB266 0%, #FFE5BA 50%, #DFB266 100%);
    box-shadow: 0 197px 55px rgba(224, 181, 106, 0),
        0 126px 50px rgba(224, 181, 106, 0.02),
        0 71px 43px rgba(224, 181, 106, 0.05),
        0 32px 32px rgba(224, 181, 106, 0.09),
        0 8px 17px rgba(224, 181, 106, 0.11);
}

.btn-methodology span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;

    background: linear-gradient(to right, #000000 0%, #6E4F19 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn-methodology::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(229, 183, 105, 0) 0%, #FFFFFF 50%, rgba(229, 183, 105, 0) 100%);
    pointer-events: none;
    z-index: 4;
    border-radius: 100px 100px 0 0;
}





.problem-container {
    background-color: #000000;
    position: relative;
    margin: 0 auto;
    padding: 0;
}

.problem-section {
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 20;
    padding: 150px 0 100px 0;
}

.problem-section .container {
    text-align: left;
}

.problem-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 60px;
}

.problem-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #170202;
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 14px;
    color: #961F1F;
    margin-bottom: 24px;
    font-family: var(--font-main);
    isolation: isolate;
}

.problem-pill::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    pointer-events: none;
    z-index: -1;
}

.problem-title {
    display: block;
    text-align: left;
    width: 100%;
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 40px;
    margin-top: 0;
    max-width: 900px;
}

.problem-description {
    text-align: left;
    margin-bottom: 24px;
    margin-top: -30px;
    color: #dedede;
    max-width: 900px;
    font-size: 20px;
}


.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.problem-box {
    background:
        linear-gradient(to bottom, rgba(27, 7, 7, 0), #1B0707),
        linear-gradient(to bottom, #1F0808, #2B0909);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 15px;
    will-change: transform, opacity, filter;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);


    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.problem-box.revealed {
    animation: revealFadeBlur 0.8s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
}

@keyframes revealFadeBlur {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}


.problem-box::before {
    content: "";
    position: absolute;
    top: -95%;
    right: -50%;
    width: 220%;
    height: 220%;
    background-image: url("assets/red-light.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: auto;
}

.problem-box-graphic {
    width: 100%;
    height: 300px;
    flex-shrink: 0;

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.problem-box:not(.problem-box-cta) .problem-box-graphic {
    background: transparent;
}

.problem-box:not(.problem-box-cta) .problem-box-graphic::before {
    display: none;
}

.problem-box:not(.problem-box-cta) .problem-box-graphic::after {
    display: none;
}

.problem-graphic-img {
    max-width: 300px;
    width: 100%;
    height: auto;

    position: relative;
    z-index: 3;

    display: block;

    image-rendering: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}


.problem-grid-canvas {
    display: none;
}

.problem-box-content {
    padding: 24px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    align-items: center;
    text-align: center;
}

.problem-box-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.problem-box-description {
    font-size: 16px;
    color: #dedede;
    margin: 0;
}

.problem-box-description2 {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}


.problem-box-cta {
    background:
        linear-gradient(to bottom, rgba(229, 183, 105, 0), #1C1605),
        linear-gradient(to bottom, #8E6B2E, #E5B769);
    border: none;
    border-radius: 15px;
    position: relative;

    overflow: hidden;
    isolation: isolate;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}



.problem-box-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, #0E0B02 0%, #8E6B2E 50%, #0E0B02 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
    display: block;
}

.problem-box-cta::after {
    display: none;
}

.problem-box-cta .problem-box-graphic {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.problem-box-cta-light {
    width: 200%;
    max-width: none;
    height: auto;
    position: relative;
    z-index: 1;
    display: block;
    object-fit: contain;
    margin-top: -80px;
}

.problem-box-cta .problem-box-content {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 5;
}

.problem-box-cta .problem-box-title {
    font-size: 25px;
    color: #ffffff;
    font-weight: 600;
}

.problem-box-cta .problem-box-description2 {
    color: #dedede;
    font-size: 16px;
    margin-bottom: 20px;
}

.problem-box-cta .text-gold {
    color: #E5B769 !important;
}

.problem-box-cta .problem-grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}


.btn-problem-cta {
    position: relative;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    z-index: 10;
    background: linear-gradient(to right, #DFB266 0%, #FFE5BA 50%, #DFB266 100%);
    margin-top: 8px;
    transition: transform 0.3s ease;
    box-shadow:
        3px 3px 9px 0px rgba(0, 0, 0, 0.64),
        10px 12px 16px 0px rgba(0, 0, 0, 0.55),
        23px 26px 21px 0px rgba(0, 0, 0, 0.33),
        42px 47px 25px 0px rgba(0, 0, 0, 0.10),
        65px 73px 27px 0px rgba(0, 0, 0, 0.01);

}

.btn-problem-cta:hover {
    transform: translateY(-2px);
}

.btn-problem-cta span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(to right, #000000 0%, #6E4F19 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.btn-problem-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(229, 183, 105, 0) 0%, #FFFFFF 50%, rgba(229, 183, 105, 0) 100%);
    pointer-events: none;
    z-index: 4;
    border-radius: 100px 100px 0 0;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .problem-box-cta {
        grid-column: span 1;
        min-height: 350px !important;
        height: 350px !important;
    }
}

.cta-blur-eclipse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: #E5B769;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}



.solution-container {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.solution-section {
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 10;
    padding: 250px 0 150px 0;
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
}

.solution-pill-centered {
    width: fit-content;
    margin: 0 auto 24px auto;
    display: flex !important;
}

.solution-title {
    display: block;
    text-align: center;
    width: 100%;
    color: #ffffff;
    font-size: 45px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: -1px;
    margin-bottom: 24px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.solution-subtitle {
    text-align: center;
}

.problem-box-nested-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 100%;
}

.problem-box-small {
    background: linear-gradient(to bottom, rgba(27, 7, 7, 0), #1B0707),
        linear-gradient(to bottom, #1F0808, #2B0909);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.problem-box-small h4 {
    font-size: 14px;
    color: #dedede;
    margin: 0;
    font-weight: 500;
}

.problem-box-small p.metric-value {
    font-size: 28px;
    font-weight: 600;
    color: #E5B769;
    margin: 0;
}

.problem-box.no-bg {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
}

.problem-box.no-bg::before {
    display: none;
}

.solution-subtitle .text-white {
    color: #ffffff !important;
    opacity: 1 !important;
}

.solution-panel {
    display: flex;
    align-items: center;
    margin-top: 60px;
    position: relative;
    padding: 60px;
    overflow: hidden;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;

    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
    will-change: transform, opacity, filter;
}

.solution-panel.revealed {
    animation: revealFadeBlur 0.8s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
}


.solution-panel::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 15%;
    bottom: 0;
    width: 100%;
    background: url('assets/background-fractals.png') no-repeat;
    background-size: 120%;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.solution-panel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #8f6c2f, #503f1b 30%, transparent);
    pointer-events: none;
}

.solution-lights-right {
    position: absolute;
    top: 0%;
    right: -20%;
    transform: translateY(-50%);
    height: 200%;
    width: auto;
    object-fit: contain;
    z-index: 5;
    pointer-events: none;
}

.solution-info {
    flex: 1;
    max-width: 550px;
    position: relative;
    z-index: 5;
}

.solution-h3 {
    font-size: 32px;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 400;
}

.solution-h3 .text-gold {
    color: #E5B769 !important;
    font-weight: 400;
}

.solution-p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.solution-p strong {
    color: #ffffff;
    font-weight: 500;
}

.text-dim {
    opacity: 0.6;
}


.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.solution-box {
    background:
        linear-gradient(to bottom, rgba(229, 183, 105, 0), #1C1605),
        linear-gradient(to bottom, #8E6B2E, #E5B769);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    border-radius: 15px;
    height: 100%;
    will-change: transform, opacity, filter;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);

    opacity: 0;
    filter: blur(20px);
    transform: translateY(30px);
}

.solution-box.revealed {
    animation: revealFadeBlur 0.8s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
}


.solution-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, #0E0B02 0%, #8E6B2E 50%, #0E0B02 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.solution-box::after {
    content: "";
    position: absolute;
    top: -65%;
    right: -50%;
    width: 160%;
    height: 160%;
    background-image: url("assets/lights-right.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: auto;
}

.solution-box-graphic {
    width: 100%;
    height: 300px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: transparent;
}

.solution-box-eclipse {
    display: none;
}



.solution-box-overlay {
    display: none;
}

.solution-box-main-graphic {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: auto;
    z-index: 5;
    pointer-events: none;
    display: block;
}


.solution-img-1 {
    width: 90%;
    bottom: -100px;
}

.solution-img-2 {
    width: 75%;
    bottom: 5px;
}

.solution-img-3 {
    width: 95%;
    bottom: -40px;
    top: 30%
}

.solution-img-4 {
    width: 100%;
}

.solution-img-5 {
    width: 90%;
    bottom: 20px;
    right: 20px;
}

.solution-img-6 {
    width: 100%;
    bottom: 20px;
}



.solution-grid-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.solution-box-content {
    padding: 24px 30px 30px 30px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex: 1;
    align-items: center;
    text-align: center;
}


.solution-box-title {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.solution-box-description {
    font-size: 16px;
    color: #dedede;
    margin: 0;
}


@media (max-width: 1024px) {
    .solution-content {
        flex-direction: column;
        gap: 60px;
    }

    .solution-info,
    .solution-visual {
        width: 100%;
        padding: 30px;
    }

    .solution-lights-right {
        content: url("assets/lights.webp");
        top: -10%;
        right: 50%;
        transform: translateX(50%);
        height: 80%;
    }

    .solution-title {
        font-size: 40px;
    }

    .solution-h3 {
        font-size: 28px;
    }
}

.solution-actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}


.community-section {
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 200px 0px 350px 0px;
    overflow: hidden;
}

.community-content {
    display: flex;
    gap: 64px;
}

.community-info {
    flex: 0 0 65%;
    max-width: 65%;
}

.community-pill {
    margin-bottom: 24px;
}

.community-title {
    text-align: left !important;
    margin-left: 0 !important;
    color: #ffffff;
}

.community-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
}

.community-description {
    font-size: 18px;
    color: #dedede;
    margin-bottom: 40px;
}

.community-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.community-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, filter 0.6s ease-out, transform 0.6s ease-out;
}

.community-feature.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: #0E0B02;
    border-radius: 9px;
    display: flex;
    align-items: center;
    padding: 10px;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.lottie-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.feature-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}



.performance-v2 {
    width: 100%;
    margin-top: 40px;
}

.perf-card-desktop {
    position: relative;
    background: linear-gradient(135deg, #4A3A1F 0%, #C9A562 100%);
    border-radius: 15px;
    padding: 60px 48px 0px 48px;
    min-height: 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}


.perf-card-desktop::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(0deg, #FFDFA8 0%, rgba(255, 231, 191, 0.3) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

.perf-card-desktop::after {
    content: "";
    position: absolute;
    top: -70%;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='1000' height='500' viewBox='0 0 1000 500' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 440 C 100 440 150 435 200 410 S 300 380 400 385 S 500 340 600 345 S 750 290 850 295 S 950 240 1000 230' stroke='white' stroke-opacity='0.15' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center center;
    background-size: cover;
    pointer-events: none;
}

.perf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.perf-title-box h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 6px 0;
    letter-spacing: -0.02em;
}

.perf-title-box p {
    font-size: 17px;
    opacity: 0.9;
    margin: 0;
}

.perf-badge-live {
    background: #2D2616;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    box-shadow:
        -3px 2px 8px rgba(0, 0, 0, 0.38),
        -10px 9px 14px rgba(0, 0, 0, 0.33),
        -24px 21px 19px rgba(0, 0, 0, 0.19),
        -42px 37px 22px rgba(0, 0, 0, 0.06),
        -65px 57px 24px rgba(0, 0, 0, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.perf-center-avg-box {
    align-self: center;
    background: #665230;
    border-radius: 15px 15px 0px 0px;
    padding: 45px 80px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.perf-center-avg-box .label {
    display: block;
    font-size: 17px;
    opacity: 0.8;
    margin-bottom: 18px;
    font-weight: 400;
}

.perf-center-avg-box .value {
    font-size: 45px;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 6px;
    color: #fff;
}

.perf-center-avg-box .sub {
    font-size: 20px;
    opacity: 0.8;
    font-weight: 400;
}

.perf-bottom-bar {
    background: linear-gradient(135deg, #9A8054 0%, #D5AC66 100%);
    border-radius: 15px 15px 0px 0px;
    display: flex;
    width: 100%;
    padding: 32px 0;
    position: relative;
    z-index: 2;
    box-shadow:
        -3px 2px 8px rgba(0, 0, 0, 0.38),
        -10px 9px 14px rgba(0, 0, 0, 0.33),
        -24px 21px 19px rgba(0, 0, 0, 0.19),
        -42px 37px 22px rgba(0, 0, 0, 0.06),
        -65px 57px 24px rgba(0, 0, 0, 0.01);
}

.perf-stat-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.perf-stat-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.perf-stat-item .label {
    font-size: 14px;
    opacity: 0.8;
}

.perf-stat-item .value {
    font-size: 32px;
    font-weight: 700;
}

.perf-stat-item .sub-badge {
    font-size: 13px;
    opacity: 0.7;
    margin-top: -4px;
}

.perf-mobile-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.perf-m-card {
    background: linear-gradient(135deg, #9A8054 0%, #D5AC66 100%);
    border-radius: 15px;
    padding: 32px;
    color: #fff;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    box-shadow:
        -3px 2px 8px rgba(0, 0, 0, 0.38),
        -10px 9px 14px rgba(0, 0, 0, 0.33),
        -24px 21px 19px rgba(0, 0, 0, 0.19);
}

.perf-m-card.header-main {
    background: linear-gradient(135deg, #4A3A1F 0%, #C9A562 100%);
    min-height: 440px;
    padding: 40px 32px 0px 32px;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.m-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.m-avg-box {
    background: #665230;
    border-radius: 15px 15px 0px 0px;
    padding: 32px;
    text-align: center;
    margin-top: auto;
}

.perf-m-card .label {
    font-size: 15px;
    font-weight: 400;
    opacity: 0.8;
}

.perf-m-card .value {
    font-size: 56px;
    font-weight: 700;
    text-align: right;
    line-height: 1;
    margin-top: auto;
}

.perf-m-card .value.large-m {
    font-size: 82px;
    letter-spacing: -0.02em;
    align-self: flex-end;
}

.perf-m-card .m-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(45, 38, 22, 0.4);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shadow-v2 {
    box-shadow: -65px 57px 24px rgba(0, 0, 0, 0.01),
        -42px 37px 22px rgba(0, 0, 0, 0.06),
        -24px 21px 19px rgba(0, 0, 0, 0.19),
        -10px 9px 14px rgba(0, 0, 0, 0.33),
        -3px 2px 8px rgba(0, 0, 0, 0.38)
}

.perf-stat-animate {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(10px);
}

.feature-icon {
    width: 24px;
    height: 24px;
}

lord-icon {
    width: 24px;
    height: 24px;
    display: block;
}


.feature-text h4 {
    font-size: 18px;
    font-weight: 500;
    color: #E5B769;
    margin: 0 0 4px 0;
}

.feature-text p {
    font-size: 16px;
    color: #dedede;
    margin: 0;
    line-height: 1.4;
}

.community-visual {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: flex-end;
}

.community-carousel {
    position: relative;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    border-radius: 32px;
    display: flex;
    justify-content: center;
}

.community-carousel .community-img {
    width: 100%;
    height: 600px;
    height: auto;
    border-radius: 32px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, visibility 0.6s;
    will-change: transform, opacity;
}

.community-carousel .community-img.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 2;
}

.community-carousel .community-img.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    z-index: 1;
}




.community-action {
    position: relative;
    z-index: 10;
}


.difference-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 150px 0 150px !important;
    overflow: hidden;
    background-image: url("assets/lights-right.png"), linear-gradient(to bottom, #8E6B2E, #0E0B02);
    background-position: right -120% top 60%, top;
    background-repeat: no-repeat, no-repeat;
    background-size: 90%, cover;
    background-blend-mode: screen, normal;
}

.difference-content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    z-index: 2;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.difference-box {
    position: relative;
    background: #000000;
    border-radius: 12px;
    padding: 50px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    isolation: isolate;
}

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

.difference-box-graphic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000000 10%, #000000 40%, transparent 100%);
    z-index: 5;
}

.difference-grid-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.difference-box-eclipse {
    position: absolute;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.5;
    z-index: 2;

    pointer-events: none;
}

.box-red .difference-box-eclipse {
    display: none;
}

.box-gold .difference-box-eclipse {
    background-color: #E5B769;
}


.difference-box-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.difference-header {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
}

.box-red .difference-header {
    color: #FFFFFF;
}

.box-gold .difference-header {
    color: #E5B769;
}

.difference-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.difference-list li {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.box-red .difference-list li {
    color: rgba(255, 255, 255, 0.55);
}

.box-gold .difference-list li {
    color: #ffffff;
}

.difference-summary {
    font-size: 18px;
    font-weight: 500;
    margin-top: 40px;
}

.box-red .difference-summary {
    color: #FFFFFF;
}

.box-gold .difference-summary {
    color: #E5B769;
}

.box-red::before {
    display: none;
}

.difference-box.box-red {
    background: rgba(34, 27, 16, 0.5);
}

.box-red .difference-grid-canvas,
.box-red .difference-box-graphic::after {
    display: none;
}


.difference-box.box-gold {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
}

.difference-box.box-gold.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.box-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, #000000 0%, #DFB266 50%, #000000 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;

    pointer-events: none;
    z-index: 10;
}

.box-red {
    border: none;
}

.box-gold {
    border: none;
    box-shadow:
        0px 106px 30px 0px rgba(0, 0, 0, 0.01),
        0px 68px 27px 0px rgba(0, 0, 0, 0.07),
        0px 38px 23px 0px rgba(0, 0, 0, 0.23),
        0px 17px 17px 0px rgba(0, 0, 0, 0.39),
        0px 4px 9px 0px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1024px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }

    .difference-box-eclipse {
        width: 300px;
        height: 300px;
        right: -50px;
    }
}



.testimonials-section {
    padding: 300px 0 100px 0;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header .performance-pill {
    margin-bottom: 30px;
}

.testimonials-header .solution-title.community-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important;
    max-width: 100%;
}

.testimonials-header .community-description {
    margin-bottom: 0px;
    display: block;
    text-align: center;
    font-size: 20px;
}

.testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}


@media (max-width: 1024px) {
    .testimonials-header {
        flex-direction: column;
        align-items: center;
    }
}


.testimonials-carousel {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
    overflow: visible;
}



.testimonials-track-wrapper {
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-track {
    display: flex;
    align-items: flex-start;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-card {
    background: #0E0B02;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    flex: 0 0 100%;
    width: 100%;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #DFB266 50%, transparent 100%);
    opacity: 0.3;
}

.testimonial-box-content {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 800px;
    padding: 60px;
}

.testimonial-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-right {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.testimonial-name {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #dedede;
    margin: 0;
}

.testimonial-result-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.carousel-nav-container {
    display: flex;
    justify-content: center;
}

.carousel-nav-pill {
    background: #E5B769;
    padding: 6px;
    border-radius: 100px;
    display: inline-flex;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #000;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.carousel-arrow:hover {
    transform: scale(1.05);
}

.carousel-arrow:active {
    transform: scale(0.95);
    opacity: 0.8;
}

.carousel-arrow svg {
    stroke: #ffffff;
    width: 20px;
    height: 20px;
}

.performance-pill2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #181109;
    border: 1px solid transparent;
    color: #E5B769;
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 14px;
    margin-bottom: 24px;
    z-index: 10;
    isolation: isolate;
}


.pricing-section {
    width: 90%;
    max-width: 1280px;
    margin: 200px auto 0 auto;
    padding: 150px 0 150px 0;
    background: linear-gradient(to bottom, #8E6B2E 0%, #000000 100%);
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, #000000 0%, #dfb36653 50%, #000000 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}


.pricing-lighting {
    position: absolute;
    top: -20%;
    left: calc(55% - 50px);
    transform: translateX(-50%);
    width: 1600px;
    height: auto;
    pointer-events: none;
    z-index: 11;
    opacity: 1;
}

.sparkles-container {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 30rem;
    pointer-events: none;
    z-index: 10;
}

.solution-sparkles {
    top: 0;
    right: -20%;
    left: auto;
    transform: none;
    width: 30rem;
    height: 20rem;
}

#sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
}

.pricing-container {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-pill {
    margin-bottom: 30px !important;
}

.pricing-title {
    margin-bottom: 24px !important;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}

.pricing-description {
    font-size: 20px;
    color: #ffffff;
    max-width: 800px;
}

.pricing-description-secondary {
    color: #ffffff;
}

.pricing-footer {
    margin-top: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-warning {
    font-size: 16px;
    color: #ffffff8a;
}


.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    display: flex;
    background: #000000;
    padding: 0;
    position: relative;
    isolation: isolate;
    border-radius: 15px;
    overflow: hidden;
}


.pricing-card:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #DFB266 50%, transparent 100%);
    z-index: 11;
}



.pricing-features li.pricing-feature-header {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 5px;
    list-style: none;
    display: block;

}


.pricing-card-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 60px 0 60px 100px;
    gap: 12px;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.pricing-card-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.pricing-card-right::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, #000000 0%, #DFB266 50%, #000000 100%);
    z-index: 5;
}


.pricing-card-right::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}



.pricing-card-label {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-value {
    font-size: 64px;
    font-weight: 500;
    color: #ffffff;
}

.price-duration {
    font-size: 16px;
    color: #dedede;
}

.btn-pricing {
    position: relative;
    padding: 15px 30px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: linear-gradient(to right, #DFB266 0%, #FFE5BA 50%, #DFB266 100%);
    margin-top: 8px;
    width: fit-content;

    box-shadow: 0 197px 55px rgba(224, 181, 106, 0),
        0 126px 50px rgba(224, 181, 106, 0.02),
        0 71px 43px rgba(224, 181, 106, 0.05),
        0 32px 32px rgba(224, 181, 106, 0.09),
        0 8px 17px rgba(224, 181, 106, 0.11);

    z-index: 10;
    transition: transform 0.3s ease;
}

.btn-pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, rgba(229, 183, 105, 0) 0%, #FFFFFF 50%, rgba(229, 183, 105, 0) 100%);
    pointer-events: none;
    z-index: 4;
    border-radius: 100px 100px 0 0;
}

.btn-pricing:hover {
    transform: translateY(-2px);
}

.btn-pricing span {
    position: relative;
    z-index: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    background: linear-gradient(to right, #000000 0%, #6E4F19 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.price-note {
    font-size: 14px;
    background: linear-gradient(to right, #E5B769 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    width: fit-content;
}

.price-note-white {
    font-size: 14px;
    color: #ffffff;
    -webkit-text-fill-color: initial;
    background: none;
    margin: 0;
}



.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 10;
}


.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
    color: #ffffff;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #B38B4D;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-card-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pricing-visual-img {
    position: absolute;
    top: 10%;
    right: -100px;
    transform: translateY(-50%);
    height: 120%;
    width: 150%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
}

.pricing-grid-canvas {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pricing-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #000000 65%, transparent 120%);
    z-index: 3;
}




.steps-section {
    width: 85%;
    max-width: 1200px;
    margin: 150px auto;
    padding: 150px 0 100px 0;
    position: relative;
}

.steps-container {
    width: 100%;
}

.steps-header {
    text-align: center;
    margin-bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps-pill {
    margin-bottom: 30px !important;
}

.steps-title {
    margin-bottom: 32px !important;
}

.steps-description {
    font-size: 20px;
    color: #dedede;
    max-width: 800px;
}

.text-white {
    color: #dedede !important;
}


.steps-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(229, 184, 105, 0.2) 50%, transparent 100%);
    z-index: 1;
    overflow: hidden;
}

.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, #E5B769, transparent);
    animation: beam-travel 3s infinite linear;
}

@keyframes beam-travel {
    0% {
        left: -100px;
    }

    100% {
        left: 100%;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number-wrapper {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.step-number-wrapper::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(229, 184, 105, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.step-number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-label {
    font-size: 20px;
    color: #E5B769;
    margin-bottom: 20px;
    font-weight: 500;
}

.step-text {
    font-size: 16px;
    color: #dedede;
    max-width: 280px;
}

.steps-action {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    position: relative;
}

.steps-action::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    pointer-events: none;
    z-index: 0;
}

.steps-action a {
    position: relative;
    z-index: 1;
}


@media (max-width: 991px) {
    .steps-grid {
        gap: 20px;
    }
}


.faq-section {
    width: 90%;
    max-width: 1000px;
    margin: 150px auto;
    padding: 100px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-pill {
    margin-bottom: 30px !important;
}

.faq-title {
    margin-bottom: 24px !important;
}

.faq-description {
    font-size: 20px;
    color: #dedede;
    max-width: 600px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #0E0B02;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #DFB266 50%, transparent 100%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.faq-item.active {
    background: #151105;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #DFB266;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-icon .minus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.active .faq-icon .plus {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.active .faq-icon .minus {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.active .faq-answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-answer-content {
    padding: 0 30px 30px 30px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
}

.faq-answer-content p {
    margin-bottom: 15px;
}

.faq-answer-content ul {
    list-style: none;
    padding-left: 0;
}

.faq-answer-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.faq-answer-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gold);
}



.footer-visual-section {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: -150px;
    background: #000000;
    overflow: hidden;
    z-index: 1;
}

.footer-flicker-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.footer-flicker-wrapper canvas {
    width: 100% !important;
    height: 100% !important;
}

.footer-flicker-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #000000 0%, transparent 40%, transparent 60%, #000000 100%);
    z-index: 3;
}

.footer-light-img {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%, 400px);
    width: 100%;
    max-width: 1800px;
    height: auto;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, 200px);
}

.footer-light-img.revealed {
    animation: revealFooterLight 1.5s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
}

@keyframes revealFooterLight {
    0% {
        opacity: 0;
        transform: translate(-50%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%);
    }
}

.footer-brand-bg-v2 {
    position: absolute;
    margin-top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(100px, 22vw, 500px);
    font-weight: 900;
    color: #000000;
    letter-spacing: 0.15em;
    z-index: 999;
    pointer-events: none;
    white-space: nowrap;
}


.main-footer-v2 {
    position: relative;
    width: 100%;
    background: #000000;
    padding: 100px 0 0px;
    z-index: 9999;
}


.main-footer-v2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    box-shadow: inset 0 25px 30px -20px rgba(229, 183, 105, 0.3);
    pointer-events: none;
    z-index: 11;
    background: linear-gradient(to bottom, rgba(229, 183, 105, 0.05) 0%, transparent 100%);
}

.footer-logo-wrap {
    margin-bottom: 40px;
}

.footer-logo {
    width: 85px !important;
    height: auto !important;
    display: block;
}

.footer-desc {
    color: #ffffff !important;
    font-size: 18px;
    max-width: 650px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 20;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-left {
    flex: 2;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-top: 85px;
}

.footer-nav-title {
    color: #E5B769;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 15px;
}

.footer-nav-links a {
    color: #dedede;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: #ffffff;
}

.footer-disclaimer-wrap {
    position: relative;
    z-index: 20;
    margin-bottom: 60px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    width: 70%;
}

.footer-disclaimer p {
    margin-bottom: 20px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 20;
    padding-bottom: 40px;
}

.footer-copy {
    color: #dedede;
    font-size: 13px;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    color: #dedede;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
        gap: 60px;
    }

    .footer-right {
        justify-content: flex-start;
        margin-top: 0;
    }
}


@media (max-width: 768px) {

    .faq-question {
        padding: 20px;
    }

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

    .navbar-content {
        justify-content: space-between;
        margin: 10px;
        border-radius: 15px;

        background: linear-gradient(rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0.55));

        backdrop-filter: blur(8px) saturate(100%);
        -webkit-backdrop-filter: blur(8px) saturate(100%);


        border: 1px solid rgba(255, 255, 255, 0.08);
    }



    .container {
        padding: 0 15px;
        max-width: 100%;
    }


    .logo {
        margin-right: auto;
    }

    .navbar-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo img {
        height: 40px;
        padding: 5px;
        margin-left: -90px;
    }

    .hero-subtext .text-white {
        color: #dedede;
        font-size: 18px;
    }

    .flickering-grid-canvas {
        display: none;
    }


    .btn-get-access {
        padding: 8px 16px;
        font-size: 13px;
    }

    h1.h1-gradient-text {
        display: block;
        text-align: center;
        margin: 0 auto 45px;
        max-width: 900px;
        font-size: 45px;
        font-weight: 400;
        line-height: 1.25;
        letter-spacing: -1px;
        color: #ffffff;
    }

    .hero-section {
        padding-top: 100px;
        padding-bottom: 120px !important;

        min-height: auto !important;

        height: auto !important;

        overflow: visible !important;

    }

    .hero-lights {
        top: -60px !important;
        transform: translate(-50%, -40%) !important;
        opacity: 1 !important;
        width: 550vw !important;
    }


    .dashboard-img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        display: block;
        position: relative;
        z-index: 1;
    }

    .dashboard-pattern-bg {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 400px;
        background-color: #000000;
        overflow: hidden;
        z-index: 0;
    }

    .dashboard-preview {
        margin-top: 40px !important;
        transform: none !important;
    }

    .dashboard-light-horizontal {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: none;
        height: 400px;
        object-fit: cover;
        z-index: 1;
        pointer-events: none;
        opacity: 0;
        animation: fadeDownSmooth 1.5s ease-out 1s forwards;
    }

    .performance-description {
        text-align: left;
        margin-bottom: 24px;
        margin-top: 0px;
        color: #dedede;
        max-width: 900px;
    }

    .chart-metrics {
        display: table;
        gap: 100px;
    }

    .solution-panel {
        display: flex;
        align-items: center;
        margin-top: 60px;
        position: relative;
        padding: 0px;
        overflow: hidden;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        border-radius: 15px;
    }

    .solution-panel::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0%;
        bottom: 0;
        width: 120%;
        background-size: 120%;
        opacity: 0;
        z-index: 0;
        pointer-events: none;
    }

    .pricing-container {
        width: 100%;
        position: relative;
        z-index: 1;
        margin-top: 0px;
        padding: 20px;
    }

    .btn-primary {
        position: relative;
        padding: 15px;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        font-family: var(--font-main);
        text-decoration: none;
        display: inline-flex;
        margin-top: 20px;
        margin-bottom: 60px;
        align-items: center;
        justify-content: center;
        z-index: 99;
        overflow: visible;
        background: linear-gradient(to right, #DFB266 0%, #FFE5BA 50%, #DFB266 100%);
        box-shadow: 0 197px 55px rgba(224, 181, 106, 0), 0 126px 50px rgba(224, 181, 106, 0.02), 0 71px 43px rgba(224, 181, 106, 0.05), 0 32px 32px rgba(224, 181, 106, 0.09), 0 8px 17px rgba(224, 181, 106, 0.11);
    }

    .dashboard-glow-wrapper {
        position: relative;
        display: inline-block;
        padding: 5px !important;
        border-radius: 6px;
        z-index: 3;
        background: linear-gradient(to bottom, #E5B769 0%, #56411E 100%);
        border: 1px solid transparent;
        background-clip: padding-box;
        padding-bottom: 100px;
        opacity: 0;
        filter: blur(4px);
        animation: fadeUpBlur 1.5s ease-out forwards;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        width: 100%;
    }

    .hero-actions .btn-primary {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .hero-actions a,
    .hero-actions button {
        width: auto;
    }

    .dashboard-shadow-container {
        width: 100vw;
        min-height: 300px;
        background-color: #000000;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999 !important;
        margin-top: -50px;
        overflow: hidden;
        contain: layout style paint;
    }

    .dashboard-pattern-bg {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: 400px;
        background-color: #000000;
        overflow: hidden;
        z-index: 0 !important;
    }

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

    .hero-features {
        width: 100%;
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
        overflow-anchor: none;
        margin-bottom: 30px;
        font-size: 14px;
        z-index: 3;
    }

    .hero-features .hero-features-marquee-rail {
        width: max-content;
        will-change: transform;
        animation: heroFeaturesMobileMarquee 12s linear infinite;
    }

    .hero-features .hero-features-marquee-track {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        gap: 20px;
        padding-right: 20px;
    }

    .hero-features .hero-features-marquee-track[aria-hidden="true"] {
        display: inline-flex;
    }

    .hero-features span {
        font-size: 14px;
    }

    .hero-features .hero-features-marquee-track span::after {
        content: "·";
        display: inline-block;
        margin-left: 20px;
    }


    .hero-features2 {
        flex-direction: column;
        font-size: 18px;
        z-index: 3;
        align-items: center;
        margin-bottom: 0;
        display: flex;
        gap: 10px;
        justify-content: center;
        color: var(--color-gold);
    }

    .hero-features2 span::after {
        display: none;
    }


    .pill-label {
        padding: 4px 12px;
        margin-bottom: 15px;
    }

    .hero-subtext {
        font-size: 18px;
        line-height: 1.4;
        padding: 0 10px;
        margin-top: -10px;
    }

    .hero-text-wrapper .disclaimer.text-white {
        opacity: 0;
        animation: fadeBlur 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: 1.7s;
        padding-top: 10px;
        padding-bottom: 30px;
        font-size: 14px;
        z-index: 4;
    }

    .hero-subtext br {
        display: none;

    }

    .h1-svg-text {
        max-width: 95%;

    }

    .difference-section {
        position: relative;
        width: 100%;
        margin: 0;
        padding: 150px 0 150px !important;
        overflow: hidden;
        background-image: url(assets/lights-right.png), linear-gradient(to bottom, #8E6B2E, #0E0B02);
        background-position: right 120% top -15%, top;
        background-repeat: no-repeat, no-repeat;
        background-size: 130%, cover;
        background-blend-mode: screen, normal;
    }

    .carousel-container {
        width: 100%;
        background-color: #000000;
        padding: 0 0 80px 0;
        position: relative;
        overflow: visible;
        margin-top: -150px;
        z-index: 50;
    }

    .performance-section {
        position: relative;
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
        z-index: 990;

    }

    .carousel-headline {
        text-align: center;
        color: #dedede;
        font-size: 18px;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .solution-title,
    .problem-title,
    .performance-title,
    .difference-title,
    .pricing-title,
    .steps-title,
    .faq-title {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }

    .pricing-description,
    .steps-description,
    .faq-description {
        font-size: 14px !important;
    }


    .performance-grids {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-card h3 {
        font-size: 28px;
    }

    .journey-svg {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%);
        filter: drop-shadow(0 0 18px rgba(223, 178, 102, 0.25));
    }

    .solution-lights-right {
        content: url(assets/lights.png);
        top: -20%;
        right: 50%;
        transform: translateX(50%);
        height: 80%;
    }

    .solution-panel::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, #8f6c2f, #503f1b 30%, #8f6c2f);
        pointer-events: none;
    }


    .problem-section {
        position: relative;
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
        z-index: 20;
        padding: 150px 0 150px 0;
    }


    .solution-section {
        position: relative;
        width: 90%;
        max-width: 1280px;
        margin: 0 auto;
        z-index: 10;
        padding: 10px 0 100px 0;
    }

    .performance-container {
        width: 100%;
        background-color: #000000;
        position: relative;
        margin: 0 auto;
        padding-top: 0px;
    }

    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .problem-box,
    .solution-box {
        padding: 0px !important;
    }


    .journey-section,
    .journey-svg,
    .journey-wrapper {
        display: none !important;
    }

    .solution-info,
    .solution-visual {
        width: 100%;
        padding: 50px 15px 50px 15px;
    }



    .difference-grid {
        grid-template-columns: 1fr !important;
    }

    .difference-box {
        padding: 25px 15px;
    }

    .difference-box-eclipse {
        width: 354px;
        height: 350px;
        top: 90% !important;
        left: 50% !important;
        transform: translate(-50%, -50%);
        opacity: 0;
    }

    .testimonials-section {
        padding: 300px 0 200px 0;
        overflow: hidden;
        position: relative;
        background-color: #000;
    }

    .testimonials-track-wrapper {
        height: 720px;
    }

    .testimonial-card {
        height: 100%;
    }

    .testimonial-box-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        height: 830px;
        padding: 20px 16px 24px;
    }

    .testimonial-left {
        padding: 10px 4px 0 4px;
        flex: 1;
        overflow-y: auto;
        max-height: calc(100% - 260px);
        -webkit-overflow-scrolling: touch;
    }

    .testimonial-right {
        min-height: 220px;
        flex: 0 0 auto;
    }

    .testimonial-name {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-text {
        font-size: 15px;
        overflow: visible;
    }

    .testimonial-result-img {
        max-height: 220px;
        width: 100%;
        object-fit: contain;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
    }


    .pricing-section {
        padding: 50px 0;
        margin: 80px auto 0 auto;
        width: 95%;
    }

    .pricing-lighting {
        width: 200%;

        top: -15%;
    }

    .pricing-card {
        padding: 55px 45px !important;
        flex-direction: column !important;
        padding: 10px;
    }

    .pricing-card-visual {
        display: none;

    }

    .solution-h3 {
        font-size: 18px;
        font-weight: 500;
        padding: 10px;
        color: #ffffff;
        margin: 0;
    }

    .solution-p {
        font-size: 16px;
        color: #dedede;
        margin: 0;
    }

    .pricing-card-right {
        border-left: none;
        border-top: 1px solid rgba(229, 183, 105, 0.1);
        padding-left: 0;
        padding-top: 40px;
        margin-top: 40px;
        justify-content: flex-start;
    }

    .pricing-card-right::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
        bottom: 0;
        width: 1px;
        background: linear-gradient(to bottom, #000000 0%, #DFB266 50%, #000000 100%);
        z-index: 5;
    }

    .price-value {
        font-size: 48px;
    }

    .pricing-card-left,
    .pricing-card-right {
        padding: 0 !important;
        width: 100%;
        border: none !important;
    }

    .performance-pill2 {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #6e4f19;
        border: 1px solid transparent;
        color: #E5B769;
        border-radius: 100px;
        padding: 6px 16px;
        font-size: 14px;
        margin-bottom: 24px;
        isolation: isolate;
    }

    .price-value {
        font-size: 36px !important;
    }

    .pricing-features li {
        font-size: 14px;
        gap: 10px;
    }


    .steps-section {
        margin: 60px auto;
        padding: 30px 0;
        width: 95%;
    }

    .step-number-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .step-number {
        width: 60px;
        height: 60px;
    }

    .step-label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .step-text {
        font-size: 13px;
    }

    .steps-header {
        margin-bottom: 40px;
    }


    .dashboard-wrapper {
        margin-top: 20px;
        padding: 4px;
        border-radius: 6px;
    }

    .dashboard-wrapper img {
        width: 100%;
        height: auto;
    }


    section {
        margin: 60px auto !important;
    }

    .stats-container {
        flex-direction: column;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
        background: linear-gradient(to right, #000000 0%, #E5B769 50%, #000000 100%);
    }

    .stat-box {
        min-width: 100%;
        padding: 30px 20px;
    }

    .performance-title {
        font-size: 36px;
        margin-bottom: 15px !important;
    }

    .performance-data {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .performance-footer {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .performance-disclaimer {
        max-width: 100%;
    }


    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }


    .timeline-line {
        display: none;
    }


    .steps-section {
        margin: 100px auto;
        padding: 60px 0;
    }

    .steps-timeline {
        position: relative;
        margin: 0px 0;
        padding: 20px 0;
    }

    .main-footer-v2 {
        position: relative;
        margin-top: -20%;
        width: 100%;
        background: #000000;
        padding: 100px 0 80px;
        z-index: 10;
    }

    .footer-light-img {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translateX(-50%);
        width: 1000px;
        max-width: 1800px;
        height: auto;
        z-index: 998;
        opacity: 1;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        z-index: 20;
        gap: 80px;
        margin-bottom: 50px;
    }

    .footer-desc {
        color: #ffffff !important;
        font-size: 16px;
        max-width: 90%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-brand-bg-v2 {
        position: absolute;
        margin-top: 180px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 130px;
        font-weight: 900;
        color: #000000;
        opacity: 0.5;
        letter-spacing: 0;
        z-index: 999;
        pointer-events: none;
        white-space: nowrap;
    }

    .footer-visual-section {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: -150px;
        background: #000000;
        overflow: hidden;
        z-index: 1;
    }

    .community-section {
        width: 100%;
        padding: 80px 0 200px;
        overflow: hidden;
    }

    .community-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .community-info {
        display: contents;
    }

    .community-pill {
        width: fit-content;
        margin: 0 auto 24px auto;
    }

    .community-title,
    .community-subtitle,
    .community-description {
        width: 100%;
        text-align: center !important;
    }

    .community-title {
        text-align: center !important;
        margin-left: 0 !important;
        color: #ffffff;
    }

    .community-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
        width: 100%;
        text-align: left;
        padding: 20px 20px 20px 20px;
    }

    .community-feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;
    }

    .community-visual {
        order: 2;
        margin: 0 auto;
        align-items: center;
        position: relative;
        width: 80%;
        max-width: 320px;
        padding: 1px 0 30px 0;
        display: flex;
        justify-content: center;
    }

    .community-carousel .community-img {
        width: 100%;
        height: auto;
        border-radius: 24px;
        object-fit: cover;
    }





    .community-action {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .community-action a,
    .community-action button {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }

    .step-img {
        width: 150%;
        height: 150%;
        object-fit: contain;
        padding-bottom: 20px;
    }

    .perf-m-card .value {
        font-size: 56px;
        font-weight: 700;
        text-align: center;
        line-height: 1;
        margin-top: auto;
    }

    .perf-m-card .value.large-m {
        font-size: 45px;
        font-weight: 500;
        letter-spacing: -0.02em;
        align-self: flex-end;
    }

    .perf-title-box h3 {
        font-size: 20px;
        font-weight: 600;
        margin: 0 0 6px 0;
        letter-spacing: 0;
    }

    .perf-m-card .value.large-m {
        font-size: 45px;
        letter-spacing: -0.02em;
        align-self: flex-end;
    }

    .perf-m-card {
        background: linear-gradient(135deg, #9A8054 0%, #D5AC66 100%);
        border-radius: 15px;
        padding: 32px;
        margin: 10px;
        color: #fff;
        position: relative;
        min-height: 200px;
        display: flex;
        flex-direction: column;
        box-shadow: -3px 2px 8px rgba(0, 0, 0, 0.38), -10px 9px 14px rgba(0, 0, 0, 0.33), -24px 21px 19px rgba(0, 0, 0, 0.19);
    }

    .perf-m-card.header-main {
        background: linear-gradient(135deg, #4A3A1F 0%, #C9A562 100%);
        min-height: 340px;
        padding: 40px 32px 0px 32px;
        border-radius: 15px;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .footer-disclaimer {
        color: rgba(255, 255, 255, 0.75);
        font-size: 16px;
        width: 100%;
    }
}


.journey-window {
    position: relative;
    height: 900px;
    overflow: hidden;
    will-change: transform;
}



.journey-window::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 85%);
    pointer-events: none;
    z-index: 20;
}

.journey-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 18px rgba(223, 178, 102, 0.25));
}

#journey-dot {
    filter: drop-shadow(0 8px 17px rgba(224, 181, 106, 0.11)) drop-shadow(0 32px 32px rgba(224, 181, 106, 0.09)) drop-shadow(0 71px 43px rgba(224, 181, 106, 0.05));
}



.journey-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    pointer-events: none;
}

.journey-step {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(20px);
    will-change: transform, opacity, filter;
    padding: 0 40px;
}

.journey-step .n {
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    background: linear-gradient(to bottom, #E5B769 0%, #000000 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -4px;
}

.journey-step .t {
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.journey-step .d {
    font-size: 20px;
    color: #dedede;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}


@media (max-width: 768px) {
    .journey-window {
        height: 420px;
    }

    .journey-step .n {
        font-size: 24px;
    }
}





.cookie-card {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 380px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.cookie-card.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.cookie-text {
    color: #111111;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.cookie-close {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    border-radius: 4px;
}

.cookie-close:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .cookie-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
        justify-content: center;
        text-align: center;
    }
}



.legal-page-container {
    padding-top: 140px;
    padding-bottom: 120px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legal-content h1 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: -1px;
}

.legal-content h2 {
    font-size: 22px;
    color: #E5B769;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 500;
}

.legal-content p {
    margin-bottom: 16px;
    color: #dedede;
    line-height: 1.7;
    font-size: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #dedede;
    line-height: 1.7;
    list-style-type: disc;
}

.legal-content strong {
    color: #fff;
}

.mobile-performance-counters {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;

    height: 300vh;
    height: 300svh;
    pointer-events: none;
}


.mj-sticky-container {
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: auto;
    will-change: transform;
}


.mj-text-container {
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(10px);
}

.mj-label {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 8px;


    background: linear-gradient(to bottom, #E5B769 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.mj-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.mj-desc {
    font-size: 15px;
    color: #a3a3a3;
    line-height: 1.5;
    max-width: 300px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .mobile-performance-counters {
        display: block;

    }


    .journey {
        display: none !important;
    }
}