@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400..700&display=swap');

html {
    scroll-behavior: smooth;
}
body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #282525;
    overflow-x: hidden;
}
hr{
    color: #282525;
    opacity: .2;
    border-top: 2px solid;
}
p {
    font-size: 40px;
    line-height: 48px;
}

h1.display-3 {
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #282525;
    background: none;
}

h2 {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.03em;
    color: #989292;
}

h3 {
    font-weight: 400;
    font-size: 54px;
    line-height: 70px;
    letter-spacing: -0.03em;
    color: #282525;
}


.btn-primary {
    position: relative;
    background: linear-gradient(92.42deg, #33D0D7 0.24%, #B179E8 100.24%);
    border: none;
    color: #fff;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;

    transition: color 0.3s ease;
    z-index: 0;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #282525;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-primary:focus::before,
.btn-primary:active::before {
    opacity: 1;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: #fff;
    outline: none;
    box-shadow: none;
}

.btn-primary.btn-big {
    font-size: 20px;
    padding: 24px 32px;
}



.btn-secondary-gradient {
    background: linear-gradient(96.96deg, #F1F1F1 0.05%, #B9AFAF 100.05%);
}

.bg-gray-section {
    background: linear-gradient(96.96deg, #F1F1F1 0.05%, #B9AFAF 100.05%);
    padding-top: 60px;
    padding-bottom: 40px;
}

.hero-section {
    padding-top: 165px !important;
    padding-bottom: 20px;
    background: linear-gradient(180deg, #F4F4F4 27.29%, #FFFFFF 58.4%);

}

.hero-section p {
    font-weight: 400;
    font-size: 32px;
    letter-spacing: -0.03em;
    color: #989292;
    line-height: 42px;
}

.fw-600 {
    font-weight: 600;
}
.nav-item{
    margin-right: 15px;
}
.nav-link {
    color: #282525;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.03em;
}

.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled,
.navbar.opened {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.container-wide {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
}

.navbar .container-wide {
    width: 100%;
    display: flex;
}

.navbar-toggler {
    float: right;
}

@media (max-width: 1399.98px) {
    .container-wide {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (max-width: 1199.98px) {
    .container-wide {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width: 991.98px) {
    .container-wide {
        padding-left: 30px;
        padding-right: 30px;
    }

    .navbar .container-wide {
        width: 100%;
        display: block;
        margin: 0;
    }
}

@media (max-width: 767.98px) {
    .container-wide {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.navbar-toggler {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    margin-top: 16px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover svg rect {
    opacity: 0.8;
}


.layout-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.card-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row;
    flex-grow: 1;
    width: calc(50% - 10px);
    min-width: 300px;
    position: relative;


    background: linear-gradient(96.96deg, #F5F5F5 0.05%, #ECECEC 100.05%);
    border: none;
    border-radius: 4px;
    overflow: hidden;


}

.card-content {
    flex: 1 0 65%;
    padding: 25px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content h2 {
    font-weight: 400;
    font-size: 54px;
    margin-bottom: 20px;
    color: #282525;
}

.card-content p {
    font-weight: 400;
    font-size: 18px;
    color: #363636;
    line-height: 21px;
    margin-bottom: 20px;
}

.card-illustration {

    margin-left: 0px;
    z-index: 5;
    display: flex;
}

.card-illustration img {
    align-self: flex-end;
}

.card-content a.btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .card-content h2 {
        font-size: 24px;
    }

    .card-content p {
        font-size: 15px;
        line-height: 18px;
    }

    .card-section {
        width: 100%;
        flex-direction: row;
    }

    .layout-grid {
        flex-direction: column;
    }

    .card-illustration {
        margin-left: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        /* transform: translate(8%, 8%);*/
    }

    .card-illustration img {
        max-width: 120px;
    }

    .card-illustration .icon-placeholder {
        width: 100px;
        height: 100px;
    }
}

.simple-item {
    background: #fff;
    padding: 55px;
    border-radius: 4px;
    align-items: center;

}

.simple-item>div {
    align-items: center;
}

.simple-content {
    color: #282525;
}

.simple-content {
    font-size: 40px;
    line-height: 42px;
}

.bg-gray-section h2 {
    color: #282525;
}

@media (max-width: 575.98px) {
    .simple-content {
        margin-top: 4px;
    }

    .simple-item>div {
        align-items: flex-start;
    }
}


.slider-container {
    width: calc(100% + 100px);
}

@media (max-width: 1399.98px) {
    .slider-container {
        width: calc(100% + 80px);
    }
}

@media (max-width: 1199.98px) {
    .slider-container {
        width: calc(100% + 50px);
    }
}

@media (max-width: 991.98px) {
    .slider-container {
        width: calc(100% + 30px);
    }
}

@media (max-width: 767.98px) {
    .slider-container {
        width: calc(100% + 20px);
    }
}

.slider-container {
    position: relative;
    padding: 0px 0 5px;
    overflow: hidden;
}

.slider-container::after {
    content: '';
    position: absolute;
    top: 3px;
    right: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    pointer-events: none;
    z-index: 10;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    box-sizing: border-box;
    padding-right: 30px;
}

.slide h3 {
    font-size: 74px;
    font-weight: 400;
    color: #282525;
    margin: 0;
    filter: blur(5px);
    opacity: 0.5;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.slide.active h3 {
    filter: blur(0px);
    opacity: 1;
}

.progress-container {
    height: 3px;
    background-color: #D9D9D9;
    width: 100%;
    margin-bottom: 80px;
    overflow: hidden;
}

.progress-bar-custom {
    height: 100%;
    background: linear-gradient(92.42deg, #33D0D7 0.24%, #B179E8 100.24%);
    width: 0%;
    transition: width 2s linear;
}


.card-slider-root {
    position: relative;
    padding-top: 80px;

}

.card-slider-nav {
    position: absolute;
    top: 16px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.card-slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.card-slider-btn:hover:not(:disabled) {
    background: #282525;
}

.card-slider-container {
    position: relative;
    overflow: hidden;
}

.card-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.card-slider-item {
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    padding-right: 20px;
    flex-shrink: 0;
}

.card-slider-item .inner-card {}

.card-slider-item.active .inner-card {}



.card-slider-item {
    position: relative;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
}

.card-slider-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 20px;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: #fff;
}

.card-slider-item.blur-right::after {
    opacity: 1;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0px,
            #fff 150px,
            #fff 100%);
}

.card-slider-item.blur-left::after {
    opacity: 1;
    background: linear-gradient(to left,
            rgba(255, 255, 255, 0) 0px,
            #fff 150px,
            #fff 100%);
}

.card-slider-item.active::after {
    opacity: 0;
}

.inner-card {
    background: #FFFFFF;
    border-radius: 0px;
    padding: 30px;
    height: 100%;
}

.inner-card h3 {
    font-weight: 400;
    font-size: 74px;
    line-height: 82px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #33D0D7 0%, #B179E8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.inner-card p {
    color: #363636;
    font-size: 18px;
    white-space: normal;
    line-height: 22px;
}


.card-slider-legend {
    margin: 0;
    padding: 40px 40px 0;
}

.card-slider-bg {
    position: relative;
    background: linear-gradient(96.96deg, #F1F1F1 0.05%, #B9AFAF 100.05%);
    padding-bottom: 40px;
    border-radius: 4px;
}

.card-slider-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    pointer-events: none;
    border: 1px solid rgba(40, 37, 37, 0.08);
    z-index: 30;
}

@media (max-width: 767.98px) {


    .card-slider-nav {
        right: 20px;
    }
}

.small,
small {
    font-size: 18px;
}
footer{
    margin-top: 140px;
}
.middlefoot{
    margin-top: 140px;
    margin-bottom: 40px;
}
.ps-lg-footcol {
    padding-left: 70px;
}

footer h2 {
    font-size: 32px;
    color: #282525;
}

footer h3 {
    font-size: 100px;
    color: #282525;
}

.footer-chip {
    font-size: 40px;
    padding: 10px 25px;
    border-radius: 6px;
    background: linear-gradient(90deg, #EAF8F9, #F3ECFF);
    color: #222;
    text-decoration: none;
    border: none;
    box-shadow: inset 0 0 0 1px rgba(40, 37, 37, 0.08);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.footer-chip:hover {
    background: #282525;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.footer-chip img {
    transition: filter 0.3s ease;
}

.footer-chip:hover img {
    filter: brightness(0) invert(1);
}

.footer-links a {
    font-size: 15px;
    line-height: 19.2px;
    text-decoration: none;
    color:#282525;
}

.footer-legal a {
    font-size: 18px;
    text-decoration: none;
    color:#282525;
}

.footer-links a:hover,
.footer-legal a:hover {
    text-decoration: none;
}

footer h6 {
    font-weight: 700;
    font-style: Bold;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 5%;
    vertical-align: middle;
}

footer i {
    font-size: 18px;
}
.platform-sticky {
    position: sticky;
    top: 150px;
}
/* ====== ORBIT ====== */
.coin-orbit {
    position: relative;
    width: min(70%, 420px);
    aspect-ratio: 1;
    margin: 70px auto;
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* ====== COIN POSITION ====== */
.coin {
  position: absolute;
  top: 50%;
  left: 50%;
  --angle: 0deg;
  --radius: 200px;   
  transform: 
    translate(-50%, -50%)      
    rotate(var(--angle))        
    translate(var(--radius))   
    rotate(calc(-1 * var(--angle))); 
  transition: transform 1s ease; 
}
/* ====== COIN CONTENT ====== */
.coin-inner {
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.coin svg {
    width: 100%;
    height: auto;
    display: block;
}


@media (max-width: 1300px) {
    .ps-lg-footcol {
        padding-left: 60px;
    }
}

@media (max-width: 1120px) {
    .ps-lg-footcol {
        padding-left: 39px;
    }
}

@media (max-width: 992px) {
    .ps-lg-footcol {
        padding-left: 12px;
        padding-right: 30px;
    }
}


/* XXL → XL */
@media (max-width: 1399.98px) {
}

/* XL → LG */
@media (max-width: 1199.98px) {
    h1.display-3 {
        font-size: 75px;
    }
    .hero-section p {
        font-size: 28px;
        line-height: 32px;
    }
}

/* LG → MD */
@media (max-width: 991.98px) {
    .navbar-nav{
        margin-top: 35px;
        margin-bottom: 15px;
    }
    .nav-link {
        font-size: 17px;
    }
    .hero-section {
        padding-top: 70px !important;
    }
    h1.display-3 {
        font-size: 65px;
        margin-top: 50px;
    }
    .hero-section p {
        font-size: 24px;
        line-height: 28px;
    }
    p.card-slider-legend{
        font-size: 24px;
        line-height: 28px;
    }
    h3 {
        font-size: 42px;
        line-height: 48px;
    }
    .inner-card p {
        font-size: 16px;
        line-height: 20px;
    }
}

/* MD → SM */
@media (max-width: 767.98px) {
    h1.display-3 {
        font-size: 45px;
        margin-top: 10px;
    }
    .hero-section p {
        font-size: 20px;
        line-height: 24px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 32px;
        line-height: 38px;
    }
    footer h3 {
        font-size: 64px;
        line-height: 66px;
    }
    .mission-section h3 {
        font-size: 32px;
        line-height: 38px;
    }
    .mission-section .slide h3 {
        font-size: 64px;
        line-height: 74px;
    }
    .about-section p, .mission-section p{
        font-size: 32px;
        line-height: 38px;
    }
    .simple-content {
        font-size: 32px;
        line-height: 38px;
    }
    .simple-item {
        padding: 27px;
    }
    .footer-chip {
        font-size: 24px;
        padding: 6px 18px;
    }
    .footer-chip img {
        width:24px;
        height:24px;
    }
    .bg-gray-section {
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .card-slider-legend {
        padding: 20px 20px 0;
    }
    .card-slider-bg {
        padding-bottom: 20px;
    }
    footer {
        margin-top: 0px;
    }
    footer h2 {
        font-size: 24px;
        line-height: 28px;
    }
    .foot-logo{
        height:64px;
    }
    .card-illustration img {
        max-width: 100px;
    }
}

/* SM → XS */
@media (max-width: 575.98px) {
    h2 {
        font-size: 12px;
    }
    .mission-section h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .about-section p,.mission-section p{
        font-size: 24px;
        line-height: 28px;
    }
    .simple-content {
        font-size: 24px;
        line-height: 28px;
    }
    .simple-item {
        padding: 17px;
    }
    .simple-icon img {
        width:32px;
        height:32px;
    }
    .btn-primary.btn-big {
        width:100%;
    }
}