@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(0); /* slight slide-up effect */
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes subtle-wobble {
    0% {
        transform: rotate(var(--base-rot));
    }
    30% {
        transform: rotate(calc(var(--base-rot) + 4deg));
    }
    55% {
        transform: rotate(calc(var(--base-rot) - 3deg));
    }
    75% {
        transform: rotate(calc(var(--base-rot) + 1.5deg));
    }
    90% {
        transform: rotate(calc(var(--base-rot) - 0.75deg));
    }
    100% {
        transform: rotate(var(--base-rot));
    }
}

.float {
    animation-name: float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.float-1 { animation-duration: 5s; animation-delay: 0s; }
.float-2 { animation-duration: 5s; animation-delay: -1s; }
.float-3 { animation-duration: 5s; animation-delay: -2s; }
.float-4 { animation-duration: 5s; animation-delay: -3s; }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #030303;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image:
            linear-gradient(#22262F 1px, transparent 1px),
            linear-gradient(90deg, #22262F 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    padding: 12px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: black;
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    padding: 12px;
}

.logo {
    img {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 5px;
    margin: 0 auto;
    width: 234px;
    height: 41px;
    flex: none;
    order: 0;
    flex-grow: 0;
    }
}

.cta-btn {
    text-align: center;
    padding: 10px 20px;
    background: linear-gradient(180deg, #38AAFF 0%, #2081F6 100%);
    border: 0.75px solid rgba(24, 123, 242, 0.75);
    box-shadow: 0px 2px 28px 4px rgba(94, 167, 255, 0.44), inset 0px -0.5px 4px 0.5px rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: transform 0.2s;
}

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

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 96px 20px 80px;
    position: relative;
    min-height: 50vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    filter: blur(150px);
    border-radius: 50%;
}

.hero-content {
    position: absolute;
    top: 15%;
    z-index: 2;
    max-width: 550px;
}

.hero h1 {
    font-size: 54px;
    line-height: 76px;
    font-weight: 500;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    background: radial-gradient(48.44% 187.46% at 50% 50%, #FFFFFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.hero p {
    font-size: 20px;
    line-height: 26px;
    color: #C6C8D0;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}
.zero-text {
    font-family: Joti One, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color:#2081F6;
}
.red-border-important {
    border-color: #8f0000 !important;
}
.green-border-important {
    border-color: #46aa3c !important;
}
.success-btn {
    background: linear-gradient(180deg, #46aa3c 0%, #46aa3c 100%) !important;
    border: 0.75px solid rgba(24, 242, 38, 0.75) !important;
    box-shadow: 0px 2px 28px 4px rgba(137, 255, 94, 0.44), inset 0px -0.5px 4px 0.5px rgba(255, 255, 255, 0.5) !important;
}
.error-btn {
    background: linear-gradient(180deg, #FF3838 0%, #F62020 100%)!important;;
    border: 0.75px solid rgba(242, 24, 24, 0.75)!important;;
    box-shadow: 0px 2px 28px 4px rgba(255, 94, 94, 0.44), inset 0px -0.5px 4px 0.5px rgba(255, 255, 255, 0.5)!important;;
}
.email-form {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: #131217;
    border: 1px solid #373940;
    border-radius: 16px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    align-items: center;
}

.email-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #C6C8D0;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.02em;
    outline: none;
    font-family: 'Inter Tight', sans-serif;
}

.email-form input::placeholder {
    color: #C6C8D0;
}


/* Floating Cards */
.card-1 {
    top: 15%;
    left: 27%;
    position: absolute;
    .card-image-1 {
        position: absolute;
        top: 39%;
        right: 63%;
        img {
            width: 170px;
        }
    }
}
.card-2 {
    position: absolute;
    top: 67%;
    left: 27%;
    .card-image-2 {
        position: absolute;
        top: 69%;
        right: 84%;
        img {
            width: 90px;
        }
    }
}
.card-3 {
    position: absolute;
    top: 16%;
    right: 24%;
    .card-image-3 {
        position: absolute;
        top: 69%;
        right: 84%;
        img {
            width: 90px;
        }
    }
}
.card-4 {
    position: absolute;
    top: 64%;
    right: 27%;
    .card-image-4 {
        position: absolute;
        top: 55%;
        right: 65%;
        img {
            width: 160px;
        }
    }
}
.card-mobile-1, .card-mobile-2 {
    display: none;
}
.card-mobile-2 {
    transform: rotate(-30deg);
    img {
        transform: rotate(30deg);
    }
}
.card-mobile-1 {
    transform: rotate(20deg);
    img {
        transform: rotate(24deg);
    }
}
.card-image-container-mobile {
    max-width: 73px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 7px;
    padding: 4px;
    z-index: -6;
    border: 0.5px solid;
    border-image-source: none;
    border-image-source: linear-gradient(97.34deg, rgba(255, 255, 255, 0.1) 12.25%, rgba(153, 153, 153, 0) 54%, rgba(255, 255, 255, 0.1) 95.75%);
    box-shadow: 0 0 4px 0 rgba(255, 255, 255, 0.08) inset;
}
.card-image-container-sections {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2.12px 60.77px 0px rgba(255, 255, 255, 0.31);
    border-radius: 22px;
    padding: 10px;
    opacity: 1;
    z-index: -10;
    img {
        width:106px;
        min-height: 106px;
        object-fit: cover;
    }
}
.card-image-container-sections img:hover {
    animation: subtle-wobble 1200ms ease-out;
}
.section-header:hover{
    img {
        animation: subtle-wobble 1200ms ease-out;

    }
}
.card-how-it-works-section-1 {
    top: 0;
    left: 23%;
    position: absolute;
    transform: rotate(-20deg);
    img {
        transform: rotate(23deg);
        --base-rot: 23deg;
    }
}
.card-how-it-works-section-2 {
    top: -4%;
    right: 25%;
    position: absolute;
    transform: rotate(20deg);
    img {
        --base-rot: 0deg;
    }
}
.card-exchange-section-1 {
    top: 10%;
    left: 25%;
    position: absolute;
    transform: rotate(-20deg);
    img {
        transform: rotate(24deg);
        --base-rot: 24deg;
    }
}
.card-exchange-section-2 {
    top: 0;
    right: 23%;
    position: absolute;
    transform: rotate(20deg);
    img {
        transform: rotate(-20deg);
        --base-rot: -20deg;
    }
}
.card-agent-section-1 {
    top: 12%;
    left: 24%;
    position: absolute;
    transform: rotate(-20deg);
    img {
        transform: rotate(-20deg);
        --base-rot: -20deg;
    }
}
.card-agent-section-2 {
    top: 0;
    right: 23%;
    position: absolute;
    transform: rotate(20deg);
    img {
        transform: rotate(-18deg);
        --base-rot: -18deg;
    }
}
.card-team-section-1 {
    top: 2%;
    left: 19%;
    position: absolute;
    transform: rotate(-20deg);
    img {
        transform: rotate(23deg);
        --base-rot: 23deg;
    }
}
.card-team-section-2 {
    top: 1%;
    right: 18%;
    position: absolute;
    transform: rotate(20deg);
    img {
        --base-rot: 0deg;
    }
}
.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 0.5px solid;
    border-image-source: linear-gradient(97.34deg, rgba(255, 255, 255, 0.1) 12.25%, rgba(153, 153, 153, 0) 54%, rgba(255, 255, 255, 0.1) 95.75%);
    box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.08) inset;
}


.card-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px;
    min-width: 160px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
    color: #E6F5FF;
}

.card-subtitle {
    font-size: 10px;
    color: #9C9FAD;
}

.verified-badge {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
        width: 18px;
    }
}

.card-stats {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4px;
    gap: 4px;

    width: 160px;
    height: 24px;

    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.08), inset 0 0 4px rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;

}
.sold-at-container{
    display: flex;
    text-align: center;
}
.stat-label {
    font-size: 10px;
    color: #FFFFFF;
}

.stat-value {
    font-weight: 600;
    font-size: 10px;
    color: #E6F5FF;
}

.stat-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #17B26A;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    text-align: center;
}

.mission-section p {
    font-size: 32px;
    line-height: 50px;
    letter-spacing: -0.02em;
    color: #F3F3F5;
    max-width: 1062px;
    margin: 0 auto 24px;
}

.mission-section .highlight {
    color: #FFFFFF;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;

    .section-header {
        h2 {
            background: radial-gradient(10% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
    }
}

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

.section-header h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 500;
    letter-spacing: -0.04em;
    background: radial-gradient(20% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    line-height: 23px;
    color: #C6C8D0;
    letter-spacing: -0.02em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.feature-card {
    background: radial-gradient(100% 100% at 50% 0%, #1A1A1A 0%, rgba(0, 0, 0) 100%);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.feature-number {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 70px;
    font-weight: 500;
    letter-spacing: -0.035em;
    background: linear-gradient(180deg, #CCCCCC -22.18%, #666666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    z-index: 0;
}

.feature-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: url("images/dotted-background.png") no-repeat;
    background-position: 50% 81%;
    padding: 22px;
    background-size: cover;
    color: inherit;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    img {
        max-height: 100px;
    }
}

.feature-text h3 {
    font-size: 22px;
    line-height: 31px;
    font-weight: 600;
    color: #D9DADF;
    margin-bottom: 12px;
    text-align: center;
}

.feature-text p {
    font-size: 18px;
    line-height: 23px;
    color: #CCCCCC;
    text-align: center;
}

/*details section*/
.details-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(0deg, #030303, #030303);
    border-radius: 32px;

}

.header-container-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 16px;
}


.cards-container-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 24px;
    margin: 80px 0;
    isolation: isolate;
    position: relative;
    margin-top: 0px;
}

.ellipse-blue-details {
    position: absolute;
    width: 393px;
    height: 32px;
    left: 416px;
    top: 187px;
    background: radial-gradient(50% 50% at 50% 50%, #0096FA 0%, #0C5D93 100%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.ellipse-red-details {
    position: absolute;
    width: 393px;
    height: 32px;
    left: 2px;
    top: 187px;
    background: radial-gradient(50% 50% at 50% 50%, #FC0000 0%, #960000 100%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
}

.card-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
    background: #000000;
    border-radius: 32px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.card-details-blue::before {
    background: radial-gradient(22.95% 34.95% at 18.92% 36.84%, rgba(0, 150, 250, 0) 0%, rgba(6, 98, 159, 0.24) 100%);
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}
.card-details-red::before {
    background: radial-gradient(19.87% 30.27% at 78.62% 33.46%, rgba(250, 0, 0, 0) 0%, rgba(148, 0, 0, 0.24) 87.86%);
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
}


.card-title-details {
    width: 345px;
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
    color: #D9DADF;
    align-self: stretch;
}

.divider-details {
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    align-self: stretch;
}

.fee-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    width: 345px;
    align-self: stretch;
}

.fee-row-details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    gap: 12px;
    align-self: stretch;
}

.fee-label-details, .fee-value-details {
    height: 24px;
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    flex: 1;
}

.fee-label-details {
    color: #9C9FAD;
    padding-left: 8px;
}

.fee-value-details {
    color: #FFFFFF;
    text-align: right;
    justify-content: flex-end;
    padding-right: 8px;
}

.total-row-details .fee-label-details,
.total-row-details .fee-value-details {
    color: #FFFFFF;
}

.divider-thin-details-blue {
    background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, rgba(0, 150, 250, 0.55) 41.31%, rgba(153, 153, 153, 0) 99.92%);
    height: 1px;
    align-self: stretch;
}
.divider-thin-details-red {
    background: linear-gradient(90deg, rgba(153, 153, 153, 0) 0%, rgba(255, 3, 3, 0.55) 41.31%, rgba(153, 153, 153, 0) 99.92%);
    height: 1px;
    align-self: stretch;
}

.total-section-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    align-self: stretch;
}

.footer-container-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 16px;
}

.highlight-text-details {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    letter-spacing: -0.02em;
    background: radial-gradient(48.44% 187.46% at 50% 50%, #FFFFFF 15.33%, rgba(255, 255, 255, 0.5) 81.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text-details {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #C6C8D0;
}
.fee-label-details-blue, .fee-value-details-blue {
    color: #0096FA !important;
    font-weight: 500;
    font-size: 18px;
}
.fee-label-details-red, .fee-value-details-red {
    color: #FF3A31 !important;
    font-weight: 500;
    font-size: 18px;
}

/* Exchange Section */
.exchange-section {
    padding: 80px 0;
}

.exchange-content {
    background: radial-gradient(100% 100% at 50% 0%, #1A1A1A 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid #333333;
    border-radius: 32px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.exchange-image {
    width: 454px;
    height: 422px;
    border-radius: 18px;
    flex-shrink: 0;
    object-fit: contain;
    display: flex;
}

.exchange-details {
    flex: 1;
}

.exchange-details h3 {
    font-size: 28px;
    line-height: 34px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

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

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    img {
        color: white;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 15px;
        height: 12px;
        opacity: 1;
        border-width: 2px;
        top: 7px;
        left: 5px;
    }
}

.check-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-item span {
    font-size: 18px;
    line-height: 23px;
    color: #CCCCCC;
}

/* ALX Agent Section */
.alx-agent-section {
    padding: 80px 0;
    background: linear-gradient(0deg, #030303, #030303);
    .section-header {
        h2 {
            background: radial-gradient(7.5% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
    }
}

.agent-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.agent-card {
    background: radial-gradient(100% 100% at 50% 0%, #1A1A1A 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid #333333;
    border-radius: 32px;
    padding: 24px;
}

.agent-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border: 8px solid rgba(0, 0, 0, 0.4);
    border-radius: 500px;
    margin-bottom: 40px;
    width: 40px;
    height: 40px;
    backdrop-filter: blur(5px);
    flex: none;
    order: 0;
    flex-grow: 0;
    img {
        width: 16px;
        height: 18px;
        max-width: 100%;
    }
}

.agent-card h3 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: #D9DADF;
    margin-bottom: 12px;
}
.agent-card p {
    font-size: 16px;
    line-height: 23px;
    color: #CCCCCC;
}
/* team grid section */
.team-section {
    .card.is-active .card-back {
        animation: fadeIn 1.5s forwards;
        pointer-events: auto;
        opacity: 1;
        transform: translateY(0);
    }

    .card.is-active .card-front {
        opacity: 0;
    }

    .card-large.is-active {
        background: radial-gradient( 300% 120% at 50% 1%, #070707 -10%, rgba(255, 255, 255, 0.12) 10%, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100% );
    }
    .header {
        text-align: center;
        margin-bottom: 80px;
        h1 {
            background: radial-gradient(25.44% 187.46% at 50% 50%, #FFFFFF 15.33%, rgba(255, 255, 255, 0.5) 81.49%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    .title {
        font-size: 40px;
        font-weight: 500;
        line-height: 52px;
        letter-spacing: -0.04em;
        text-transform: capitalize;
        background: radial-gradient(48.44% 187.46% at 50% 50%, #FFFFFF 15.33%, rgba(255, 255, 255, 0.5) 81.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 18px;
        font-weight: 400;
        line-height: 23px;
        letter-spacing: -0.02em;
        color: #C6C8D0;
    }

    .team-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }

    .leadership-row {
        display: flex;
        justify-content: center;
        gap: 34px;
        flex-wrap: wrap;
    }

    .advisors-row {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .card {
        perspective: 1000px;
        cursor: pointer;
    }

    .card-large {
        width: 325px;
        height: 425px;
        justify-content: space-between;
        opacity: 1;
        padding: 30px;
        border-image-source: linear-gradient(180deg, #333333 0%, rgba(24, 24, 24, 0.44) 100%);
        border-radius: 25.2733px;
        background: radial-gradient(100% 100% at 50% 0%, #0F0F0F 0%, rgba(30, 30, 30, 0.1) 100%);
    }

    .card-large::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 180deg, #333333 0%, rgba(24, 24, 24, 0.44) 100% );
        -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }
    .card-large .profile-info {
        margin-left: -55px;
        margin-top: -30px;
    }
    .card-small {
        width: 160px;
        height: 243px;
        border-image-source: linear-gradient(180deg, #333333 0%, rgba(24, 24, 24, 0.44) 100%);
        border-radius: 25px;
        background: radial-gradient(100% 100% at 50% 0%, #0F0F0F 0%, rgba(30, 30, 30, 0.1) 100%);
        .card-inner {
            background-position: 50% 140%;
        }
    }
    .card-back {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
    }


    .card-small::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;

        background: linear-gradient(
                180deg,
                #333333 0%,
                rgba(24, 24, 24, 0.44) 100%
        );

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

        pointer-events: none;
    }
    .profile-info-back {
        line-height: 35px;
    }
    .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transition: transform 1.5s;
        transform-style: preserve-3d;
        background: url("images/dotted-background.png") no-repeat center;
        background-size: 185%;
        color: inherit;
    }

    .card.flipped .card-inner {
        transform: rotateY(180deg);
    }

    .card-front, .card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .card-back {
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 9px;
        width: 100%;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 0;
        .role {
            padding: unset;
        }
        .card-back-details-text {
            color: rgba(172, 175, 187, 1);
            width: 95%;
            font-family: Inter Tight, sans-serif;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            letter-spacing: 0;

        }
    }


    .card-large .card-front {
        padding: 20px;
        gap: 26px;
        justify-content: space-between;
    }

    .card-small .card-front {
        gap: 31px;
        justify-content: center;
    }

    .profile-image {
        width: 100%;
        border-radius: 12px;
    }

    .card-large .profile-image {
        height: 320px;
        object-fit: cover;
    }

    .card-small .profile-image {
        width: 89.09px;
        height: 115.01px;
        object-fit: cover;
    }
    .card-small .card-back {
        padding: 15px;
    }

    .profile-info {
        width: 100%;
        margin-left: 25px;
        font-size: 12px;
    }

    .card-large .profile-info {
        display: flex;
        flex-direction: column;
        gap: 7.9px;
    }

    .card-small .profile-info {
        display: flex;
        flex-direction: column;
        gap: 7.9px;
    }

    .name {
        font-weight: 600;
        letter-spacing: -0.02em;
        color: #D9DADF;
    }

    .card-large .name {
        font-size: 22px;
        line-height: 25px;
    }

    .card-small .name {
        font-size: 16px;
        line-height: 25px;
    }

    .role {
        font-weight: 400;
        color: #CCCCCC;
        display: inline-block;
        padding: 2px 0px;
        border-radius: 4px;
    }

    .card-large .role {
        font-size: 16px;
        line-height: 18px;
    }

    .card-small .role {
        font-size: 14px;
        line-height: 18px;
    }

    @media (max-width: 1100px) {
        .title {
            font-size: 32px;
            line-height: 42px;
        }
    }

    @media (max-width: 768px) {
        .card-back-details-text {
            line-height: 18px;
        }
        .card-small {
            justify-content: center;
            display: flex;
            align-items: center;
            width: 100%;

            .card-inner {
                width: 20rem;
            }
        }

        body {
            padding: 40px 20px;
        }

        .header {
            margin-bottom: 40px;
        }

        .title {
            font-size: 28px;
            line-height: 36px;
        }

        .subtitle {
            font-size: 16px;
        }
    }
    @media (max-width: 480px) {
        .card-small {
            .profile-info {
                text-align: left;
                margin-left: 35px;

                .role {
                    margin: unset;
                    padding: unset;
                }
            }
        }
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    text-align: center;
}

.newsletter-content {
    background: radial-gradient(100% 100% at 50% 0%, #1A1A1A 0%, rgba(0, 0, 0, 0) 100%);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.newsletter-content h2 {
    font-size: 40px;
    line-height: 52px;
    font-weight: 500;
    letter-spacing: -0.04em;
    background: radial-gradient(20% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.newsletter-content p {
    font-size: 18px;
    line-height: 23px;
    color: #C6C8D0;
    margin-bottom: 20px;
}
.newsletter-line-1 {
    filter: grayscale(100%) brightness(500%) contrast(120%);
    max-width: 257px;
    opacity: 0.2;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.newsletter-line-2 {
    filter: grayscale(100%) brightness(500%) contrast(120%);
    max-width: 257px;
    opacity: 0.2;
    transform: rotate(-180deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.footer-join-button {
    position: inherit;
    z-index: 5;
}
/* Trademark section */
.trademark-section {
    margin: 10px auto;
    display: flex;
    flex-direction: row;
    width: 844px;
    align-items: flex-start;
    padding: 24px 12px;
    gap: 15px;
    box-sizing: border-box;
    .container {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        gap: 8px;
    }
    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;
        height: 24px;
    }
    .checkmark {
        width: 20px;
        height: 20px;
        position: relative;
    }

    .checkmark img {
        max-width: 12px;
    }

    .title {
        font-weight: 400;
        font-size: 18px;
        line-height: 23px;
        text-align: center;
        letter-spacing: -0.02em;
        color: #D9DADF;
    }

    .description {
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        letter-spacing: -0.02em;
        color: #9C9FAD;
    }

    .description b {
        color: #9C9FAD;
        text-decoration: underline;
        cursor: pointer;
    }

    .divider {
        width: 1px;
        height: 79px;
        background: radial-gradient(
                80% 160% at 50% 50%,
                #393939 0%,
                #070707 70%,
                #070707 100%
        );
    }
}
/* Footer */
footer {
    padding: 64px 80px 48px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-bottom: 44px;
}

.footer-logo {
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    img {
        width: 255px;
        height: 45px;
    }
}

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

.footer-links a {
    color: #C6C8D0;
    text-decoration: none;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.02em;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px;
    gap: 64px;
    border-top: 1px solid rgba(55, 57, 64, 1);
    height: 24px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    .socials-bottom-links {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 16px;
        width: 100px;
        height: 24px;
        flex: none;
        order: 1;
        flex-grow: 0;
    }
}

.footer-bottom p {
    font-size: 16px;
    line-height: 24px;
    color: #C6C8D0;
    letter-spacing: -0.04em;
}
.active {
    display: flex !important;
}
/*modal */
/* Modal overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 1000;
}

/* Modal container */
.modal {
    background: #030303;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    width: 420px;
    padding: 40px 32px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Title */
.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Main text */
.modal-text {
    font-size: 15px;
    line-height: 1.6;
    color: #b5b5b5;
    text-align: center;
    margin: 0;
}
h2.main-title-details {
    background: radial-gradient(30% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 99.49%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Thank-you text */
.modal-thanks {
    font-size: 14px;
    color: #8f8f8f;
    text-align: center;
    margin-top: 4px;
}

/* Button */
.modal-button {
    margin-top: 16px;
    padding: 12px 24px;

    background: #ffffff;
    color: #030303;

    border: none;
    border-radius: 999px;

    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

    transition: opacity 0.2s ease;
}

.modal-button:hover {
    opacity: 0.85;
}

/* General */
.mobile {
    display: none;
}
.highlited-text-gradient {
    color: rgba(172, 175, 187, 1);
}
.visible {
    display: initial !important;
}
.hidden {
    display: none !important;
}
.more-trademark-data, .more-pricing-data {
    display: none;
}
@media (max-width: 2148px) {
    .card-1 {
        top: 15%;
        left: 21%;
    }
    .card-2 {
        top: 67%;
        left: 21%;
    }
    .card-3 {
        top: 16%;
        right: 15%;
    }
    .card-4 {
        top: 64%;
        right: 21%;
    }
}
@media (max-width: 1800px) {
    .card-1 {
        top: 15%;
        left: 15%;
    }
    .card-2 {
        top: 67%;
        left: 15%;
    }
    .card-3 {
        top: 16%;
        right: 9%;
    }
    .card-4 {
        top: 64%;
        right: 15%;
    }
}
@media (max-width: 1480px) {
    .card-1 {
        top: 15%;
        left: 9%;
    }
    .card-2 {
        top: 67%;
        left: 9%;
    }
    .card-3 {
        top: 16%;
        right: 3%;
    }
    .card-4 {
        top: 64%;
        right: 9%;
    }
}
@media (max-width: 1201px) {
    .card-1 {
        top: 15%;
        left: 8%;
    }
    .card-2 {
        top: 67%;
        left: 6%;

    }
    .card-3 {
        top: 16%;
        right: 1%;
    }
    .card-4 {
        top: 64%;
        right: 1%;
    }
    .card-team-section-2 {
        right: 20%;
    }
    .card-small {
        width: 200px !important;
    }
}
@media (max-width: 1024px) {
    .agent-card {
        display: flex;
        gap: 31px;
        p {
            text-align: left !important;
        }
    }
    .trademark-section {
        flex-direction: column;
        height: unset;
        width: unset;
        .divider {
            height: 1px;
            width: 100%;
        }
        .container {
            height: unset !important;
        }
    }
    .container {
        p {
            font-weight: 400;
            font-size: 20px;
            line-height: 34px;
            text-align: center;
            vertical-align: middle;
            text-transform: capitalize;
        }
    }
    .hero {
        min-height: 40vh;
    }
    .card-mobile-1, .card-mobile-2 {
        display: flex;
        position: absolute;
        img {
            max-width: 80px;
        }
    }
    .card-mobile-1 {
        top: 3%;
        right: 13%;
    }
    .card-mobile-2 {
        left: 15%;
        top: 24%;
    }
    .card-image-container-sections {
        img {
            width:56px;
            min-height: 56px;
        }
    }
    .card-how-it-works-section-2 {
        top: -2%;
    }
    .card-exchange-section-1 {
        top: 6%;
        left: 16%;
    }
    .card-exchange-section-2 {
        top: 0;
        right: 16%;
    }
    .card-agent-section-1 {
        top: 0;
        left: 17%;
    }
    .card-agent-section-2 {
        right: 19%;
    }
    .card-team-section-1 {
        top: 4%;
        left: 14%;
    }
    .card-team-section-2 {
        right: 12%;
    }
    .advisory-member {
        width: 100%;
    }
    .advisory-grid {
        display: block;
    }
    .container {
        padding: 0 40px !important;
    }

    nav {
        padding: 12px 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .exchange-content {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .agent-features {
        grid-template-columns: 1fr;
    }

    .floating-card, .floating-card-container {
        display: none;
    }
}
@media (max-width: 768px) {
    .socials-bottom-links {
        gap: 24px !important;
    }
    .footer-content {
        margin-bottom: 0;
    }
    .highlight-text-details, .footer-text-details {
        font-size: 16px !important;
    }
    .card-title-detail, .fee-details, .card-title-details {
        width: 400px;
    }
    .agent-card {
        h3 {
            font-size: 18px;
        }
        p {
            font-size: 16px;
        }
    }
    .feature-card {
        padding: 10px;
        h3 {
            font-size: 18px;
        }
        p {
            font-size: 16px;
        }
    }
    footer {
        padding: 64px 11px 48px;
    }
    .footer-links a {
        font-size: 16px;
    }
    .trademark-section {
        padding: 24px 0;
        .container {
            width: unset !important;
        }
    }
    .section-header {
        h2 {
            font-size: 24px;
        }
        p {
            font-size: 16px;
        }
    }
    .card-exchange-section-1 {
        top: 5%;
        left: 15%;
    }
    .card-exchange-section-2 {
        top: 0;
        right: 19%;
    }
    .card-agent-section-2 {
        right: 19%;
    }
    .card-team-section-1 {
        top: -0.5%;
        left: 5%;
    }
    .card-team-section-2 {
        top: 0;
        right: 6%;
    }
    .cards-container-details {
        flex-direction: column;
        margin: 40px 0;
        margin-top: 0;
    }

    header {
        border-bottom: 1px solid rgba(20, 20, 20, 1);
        position: sticky;
        padding: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    .newsletter-content {
        padding: 50px 10px;
    }
    .newsletter-content h2 {
        font-size: 24px;
    }
    .newsletter-content p {
        font-size: 16px;
    }

    .mobile {
        display: block;
    }
    .cta-btn.desktop {
        display: none;
    }
    .cta-btn-container.mobile {
        display: flex;
        margin-top: 25px;
        justify-content: center;
        align-items: center;
    }
    .hero h1 {
        font-size: 36px;
        line-height: 48px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
        input {
            width: 100%;
        }
    }
    .header-container-details {
        gap: 0 !important;
        margin-bottom: 40px;
    }
    nav {
        display: flex;
        padding: 0;
        padding-left: 20px;
        padding-right: 20px;
        justify-content: space-between;
        .logo {
            img {
                width: auto;
                object-fit: contain;
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 0;
                gap: 3px;
                margin: 0 auto;
            }
        }
    }
    .exchange-image {
        width: unset;
        height: unset;
        img {
            width: 100%;
        }
    }

    .hero-content {
        max-width: 342px;
        p {
            font-size: 16px;
        }
    }
    .footer-bottom {
        justify-content: center;
        gap: 12px;
        flex-direction: column;
    }
    .ellipse-blue-details, .ellipse-red-details {
        display: none;
    }
}
@media (max-width: 580px) {
    .card-title-detail, .fee-details, .card-title-details {
        width: 250px;
    }
    .container .how-it-works-section-header h2 {
        background: radial-gradient(26% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    h2.main-title-details {
    background: radial-gradient(50% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 99.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .container .exchange-section-header h2 {
        background: radial-gradient(36% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .container .alx-agent-section-header h2 {
        background: radial-gradient(36% 187.46% at 50% 50%, #FFF 58.52%, rgba(255, 255, 255, 0.5) 81.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .container .team-section-header h1 {
        background: radial-gradient(65% 187.46% at 50% 50%, #FFFFFF 15.33%, rgba(255, 255, 255, 0.5) 81.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .container .newsletter-content h2 {
        background: radial-gradient(65% 187.46% at 50% 50%, #FFFFFF 15.33%, rgba(255, 255, 255, 0.5) 81.49%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    nav .logo img {
        height: 24px;
    }
    .trademark-section {
        .description {
            font-size: 16px;
        }
        .header {
            font-size: 13px;
        }
    }
    .card-how-it-works-section-2 {
        top: 0;
        right: 6%;
    }
    .card-how-it-works-section-1 {
        top: -1%;
        left: 6%;
    }
    .card-exchange-section-1 {
        top: 4%;
        left: 3%;
    }
    .card-exchange-section-2 {
        top: 2%;
        right: 7%;
    }
    .card-mobile-1 {
        right: 5%;
    }
    .card-mobile-2 {
        left: 5%;
    }
    .card-agent-section-1 {
        left: 5%;
    }
    .card-agent-section-2 {
        right: 7%;
    }
    .card-team-section-1 {
        left: 1%;
    }
    .card-team-section-2 {
        right: 1%;
        top: 1%;
    }
}
@media (max-height: 700px) {
    .hero {
        min-height: 70vh;
    }
}

@media (hover: hover) and (pointer: fine) {
    .card:hover .card-back {
        animation: fadeIn 1.5s forwards;
        pointer-events: auto;
    }
    .card-large:hover {
        background: radial-gradient( 300% 120% at 50% 1%, #070707 -10%, rgba(255, 255, 255, 0.12) 10%, rgba(255, 255, 255, 0.04) 70%, rgba(255, 255, 255, 0) 100% );
    }

    .card:hover .card-back {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .card:hover .card-front {
        opacity: 0;
    }
}


