*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    background: #02050a;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(0.5rem, 2vw, 2.75rem);
    padding: clamp(0.65rem, 1.4vw, 1.75rem) clamp(1.15rem, 5vw, 7.5rem);
    background: transparent;
}

.navbar-logo {
    justify-self: start;
    min-width: 0;
    margin-left: clamp(3.6rem, 4.4vw, 1.75rem);
}

.navbar-logo img {
    display: block;
    height: clamp(2rem, 3.8vw, 5rem);
    width: auto;
    max-width: min(42vw, 18rem);
    object-fit: contain;
    mix-blend-mode: screen;
}

.navbar-menu {
    justify-self: center;
    min-width: 0;
    transform: translateX(clamp(4.6rem, 1.4vw, 1.75rem));
}

.navbar-menu ul {
    display: flex;
    align-items: center;
    gap: clamp(2.0rem, 5.0vw, 5.0rem);
    list-style: none;
}

.navbar-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: clamp(0.875rem, 0.55vw + 0.55rem, 1.15rem);
    font-weight: 400;
    line-height: 1.57;
    letter-spacing: 0.00714em;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.navbar-text {
    font-family: "Inter", sans-serif;
}

.navbar-menu a:hover {
    color: rgba(94, 200, 255, 0.8);
}

.navbar-social {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: clamp(0.35rem, 0.8vw, 0.75rem);
    margin-right: clamp(0.75rem, 1.6vw, 2.25rem);
}

.navbar-social a {
    display: block;
    width: clamp(2.35rem, 3.4vw, 4.25rem);
    height: clamp(2.35rem, 3.4vw, 4.25rem);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.navbar-social a:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.navbar-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1100px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        gap: clamp(0.6rem, 1.8vw, 1.5rem);
    }

    .navbar-menu {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar-menu ul {
        gap: clamp(0.45rem, 0.6vw, 0.9rem);
    }
}

@media (max-width: 640px) {
    .navbar-menu {
        display: none;
    }
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #02050a;
}

.hero-track {
    position: relative;
    width: 100%;
    /* Shift up and clip the top 10% of both hero images */
    transform: translateY(-10%);
    margin-bottom: calc(100% * -1328 / 1760 * 0.1);
}

.hero-slide {
    width: 100%;
    height: auto;
    display: block;
}

.hero-bg1 {
    position: relative;
    z-index: 1;
}

.hero-bg2 {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: fill;
    opacity: 0;
    animation: hero-fade 6s ease-in-out infinite;
}

/* Hold bg1, fade in bg2, hold, fade out back to bg1 */
@keyframes hero-fade {
    0%,
    40% {
        opacity: 0;
    }

    50%,
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg2 {
        animation: none;
        opacity: 0;
    }
}

.hero-copy {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: clamp(1.15rem, 5vw, 7.5rem);
    max-width: min(46rem, 44vw);
    transform: translateY(-62%);
    text-align: left;
}

.hero-copy h1 {
    display: flex;
    flex-direction: column;
    gap: 0.08em;
    font-size: clamp(2.35rem, 4.6vw, 6.25rem);
    font-weight: 600;
    line-height: 1.48;
    letter-spacing: 0.01em;
}

.hero-title-white {
    color: #fff;
}

.hero-title-blue {
    color: #62b6f5;
}

.hero-sub {
    margin-top: clamp(1.65rem, 2.4vw, 2.85rem);
    max-width: min(38rem, 42vw);
    color: #b0b0b0;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.30rem, 1.15vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.85rem, 1vw, 1.2rem);
    margin-top: clamp(1.5rem, 2.2vw, 2.5rem);
    padding: clamp(0.38rem, 0.5vw, 0.55rem) clamp(0.38rem, 0.5vw, 0.55rem) clamp(0.38rem, 0.5vw, 0.55rem) clamp(1.35rem, 1.6vw, 1.85rem);
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #2468e3 0%, #2468e3 58%, #1b58c4 100%);
    box-shadow:
        0 8px 20px rgba(0, 10, 36, 0.5),
        inset 0 1px 0 rgba(220, 236, 255, 0.55),
        inset 0 -1px 0 rgba(10, 40, 110, 0.28);
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1rem, 1.05vw, 1.3rem);
    font-weight: 400;
    text-decoration: none;
}

.hero-cta-arrow {
    display: block;
    flex-shrink: 0;
    width: clamp(2rem, 2.2vw, 2.75rem);
    height: clamp(2rem, 2.2vw, 2.75rem);
    object-fit: contain;
    border-radius: 50%;
}

.hero-features {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(1.1rem, 1.8vw, 1.75rem);
    list-style: none;
    padding: 0 clamp(1.15rem, 5vw, 7.5rem) clamp(1.25rem, 2.4vw, 2.5rem);
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: clamp(0.7rem, 1vw, 1.15rem);
    flex: 0 0 auto;
    min-width: min-content;
    max-width: none;
}

.feature-icon {
    display: block;
    flex-shrink: 0;
    width: clamp(2.7rem, 3.2vw, 4.5rem);
    height: clamp(2.7rem, 3.2vw, 4.5rem);
    object-fit: contain;
    object-position: center;
}

.header6 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.3rem, 1.05vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.hero-features p {
    color: #b0b0b0;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.8125rem, 0.85vw, 1.1rem);
    font-weight: 400;
    line-height: 1.6;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero-copy {
        top: 30%;
        left: clamp(1.15rem, 5vw, 2rem);
        max-width: min(34rem, 88vw);
        transform: translateY(-30%);
    }

    .hero-features {
        padding-bottom: 1rem;
        gap: 1rem 1.25rem;
    }
}

@media (max-width: 560px) {
    .hero-features {
        display: none;
    }
}

.partners {
    width: 100%;
    background: #121520;
}

.partners-box {
    overflow: hidden;
    padding: clamp(0.85rem, 1.8vw, 1.35rem) 0;
}

.partners-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: partners-scroll 36s linear infinite;
}

.partners-set {
    --logo-gap: 3.25rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: var(--logo-gap);
    padding-right: var(--logo-gap);
}

.partners-set img {
    display: block;
    width: 7.5rem;
    height: 2.4rem;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    opacity: 0.8;
    mix-blend-mode: screen;
}

@keyframes partners-scroll {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
        width: 100%;
        justify-content: center;
    }

    .partners-set {
        width: 100%;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        padding: 0 1rem;
    }

    .partners-set[aria-hidden="true"] {
        display: none;
    }
}

.about {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(36, 104, 227, 0.55);
}

.about-bg {
    display: block;
    width: 100%;
    height: auto;
}

.about-coins {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.coin {
    position: absolute;
    height: auto;
    object-fit: contain;
}

.coin-left1 {
    top: 8%;
    left: 6%;
    width: min(15vw, 13rem);
}

.coin-left2 {
    top: 38%;
    left: 14%;
    width: min(12vw, 10.5rem);
}

.coin-right1 {
    top: 7%;
    right: 9%;
    width: min(12vw, 10.5rem);
}

.coin-right2 {
    top: 32%;
    right: 4%;
    width: min(22vw, 18rem);
}

.about-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    grid-template-rows: 1fr 1fr;
    text-align: center;
}

.about-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2.5rem) clamp(12%, 18vw, 22%);
}

.about-block-top {
    padding-bottom: 0;
}

.about-block-bottom {
    padding-top: 0.5rem;
}

.about-label {
    color: rgba(255, 255, 255, 0.72);
    font-family: "Inter", sans-serif;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.about-content h2 {
    display: flex;
    flex-direction: column;
    gap: 0.12em;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.55rem, 3.4vw, 3.35rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.about-title-white {
    color: #fff;
}

.about-title-blue {
    color: #62b6f5;
}

.about-copy {
    margin-top: clamp(0.85rem, 1.4vw, 1.35rem);
    max-width: 42rem;
    color: #b0b0b0;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.78rem, 0.95vw, 1.05rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
}

.about-risk {
    max-width: 22ch;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.15rem, 2.1vw, 1.85rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .coin-left1,
    .coin-left2,
    .coin-right1,
    .coin-right2 {
        width: min(22vw, 7rem);
    }

    .about-block {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.services {
    --services-pad-x: clamp(1.15rem, 4vw, 3.25rem);
    --services-pad-y: clamp(1.5rem, 3.8vw, 3.15rem);
    --services-gap: clamp(0.9rem, 1.6vw, 1.5rem);
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: clamp(1rem, 2.4vw, 2rem) clamp(1rem, 4vw, 3.5rem) 0;
    background-color: #121520;
    background-image:
        radial-gradient(ellipse 70% 28% at 10% 12%, rgba(36, 104, 227, 0.18), transparent 58%),
        radial-gradient(ellipse 48% 22% at 88% 8%, rgba(98, 182, 245, 0.08), transparent 52%),
        linear-gradient(180deg, #000000 0%, #05070c 20%, #0c1018 42%, #121520 58%, #121520 100%);
}

.services-frame {
    position: relative;
    z-index: 1;
    max-width: 88rem;
    margin: 0 auto;
}

.services-intro {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(1.25rem, 4vw, 3.5rem);
    padding: var(--services-pad-y) var(--services-pad-x) 0;
}

.services-intro-copy {
    min-width: 0;
}

.services-label {
    color: #b0b0b0;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    margin-bottom: 0.7rem;
}

.services-intro h2 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.services-intro h2 span {
    color: #62b6f5;
}

.services-lead {
    margin-top: 1.15rem;
    max-width: 34rem;
    color: #9ca3af;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.88rem, 0.35vw + 0.78rem, 1.1rem);
    font-style: italic;
    line-height: 1.6;
}

.services-tag {
    margin-top: 0.85rem;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.2rem);
    font-weight: 600;
    line-height: 1.45;
}

.services-tag + .services-tag {
    margin-top: 0.3rem;
}

.services-wavechart {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    justify-self: stretch;
    pointer-events: none;
    mix-blend-mode: screen;
}

.services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--services-gap);
    list-style: none;
    width: 100%;
    margin: clamp(0rem, -5vw, -1.5rem) 0 0;
    padding: 0 var(--services-pad-x) var(--services-pad-y);
}

.service-card {
    background: #1c1e26;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: clamp(1.1rem, 1.8vw, 1.75rem);
    min-width: 0;
}

.service-card img {
    display: block;
    width: clamp(2.15rem, 3vw, 2.75rem);
    height: clamp(2.15rem, 3vw, 2.75rem);
    object-fit: contain;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.55rem;
}

.service-card p {
    color: #9ca3af;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.82rem, 0.9vw, 0.95rem);
    line-height: 1.55;
}

.services-detail {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.5rem, 4.5vw, 4.5rem);
    align-items: center;
    width: 100%;
    margin: 0;
    min-height: auto;
    padding: var(--services-pad-y) var(--services-pad-x) clamp(2.75rem, 5.5vw, 4.5rem);
}

.services-detail::before {
    content: "";
    position: absolute;
    left: -12%;
    top: 4%;
    width: min(46rem, 68%);
    height: 92%;
    background: radial-gradient(ellipse at 18% 42%, rgba(50, 120, 220, 0.38) 0%, rgba(28, 62, 160, 0.22) 38%, transparent 72%);
    pointer-events: none;
    z-index: 0;
    filter: blur(22px);
}

.services-pies {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 11;
    min-height: 0;
}

.pie {
    position: absolute;
    height: auto;
    mix-blend-mode: screen;
    pointer-events: none;
}

.pie-back {
    top: 14%;
    left: 12%;
    z-index: 1;
    width: 86%;
    opacity: 1;
    filter: drop-shadow(8px 10px 18px rgba(8, 20, 50, 0.45));
}

.pie-middle {
    top: 7%;
    left: 6%;
    z-index: 2;
    width: 86%;
    opacity: 1;
    filter: drop-shadow(6px 8px 16px rgba(8, 20, 50, 0.4));
}

.pie-front {
    top: 0;
    left: 0;
    z-index: 3;
    width: 86%;
    opacity: 1;
    filter: drop-shadow(0 10px 28px rgba(70, 150, 255, 0.35));
}

.services-points {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 2vw, 1.85rem);
    list-style: none;
    padding-top: 0;
    min-width: 0;
}

.services-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.services-points img {
    display: block;
    width: 1.85rem;
    height: 1.85rem;
    flex-shrink: 0;
    object-fit: contain;
    mix-blend-mode: screen;
    margin-top: 0.15rem;
}

.services-points h3 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.15rem, 1.4vw, 1.45rem);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.services-points p {
    color: #99999b;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.88rem, 1vw, 1.02rem);
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .services-intro {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        gap: clamp(1rem, 3vw, 2rem);
    }

    .services-detail {
        gap: clamp(1.25rem, 3vw, 2.5rem);
    }
}

@media (max-width: 960px) {
    .services-intro {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.5rem;
        padding-bottom: 0.5rem;
    }

    .services-wavechart {
        max-width: min(28rem, 100%);
        justify-self: center;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        margin-top: 0.75rem;
    }

    .services-detail {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 1.75rem;
    }

    .services-pies {
        max-width: 36rem;
        margin: 0 auto;
    }

    .services-points {
        padding-top: 0;
        max-width: 36rem;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .services {
        --services-pad-x: 1rem;
        --services-pad-y: 1.25rem;
        padding: 0.85rem 0.75rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-intro h2 {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }
}

.stats-bridge {
    background-color: #121520;
    background-image: linear-gradient(90deg, rgba(8, 9, 14, 0) 0%, #23293f 50%, rgba(8, 9, 14, 0) 100%);
    padding: clamp(2.25rem, 5vw, 4.25rem) clamp(1rem, 4vw, 3.5rem) clamp(1.75rem, 4vw, 3rem);
}

.stats-bridge ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    list-style: none;
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 clamp(1.15rem, 4vw, 3.25rem);
    text-align: center;
}

.stats-bridge strong {
    display: block;
    color: #62b6f5;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.85rem, 4vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.45rem;
}

.stats-bridge span {
    display: block;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.82rem, 1.05vw, 1.05rem);
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 960px) {
    .stats-bridge ul {
        grid-template-columns: 1fr 1fr;
        row-gap: 1.75rem;
    }
}

@media (max-width: 480px) {
    .stats-bridge ul {
        grid-template-columns: 1fr;
    }
}

.process {
    background-color: #131520;
    padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6.5rem);
}

.process-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 6vw, 6.5rem);
    align-items: start;
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 clamp(1.15rem, 4vw, 3.25rem);
}

.process-label {
    color: #b0b0b0;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    margin-bottom: 0.7rem;
}

.process-copy h2 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
    max-width: 12ch;
}

.process-copy h2 span {
    color: #62b6f5;
}

.process-cta {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.85rem, 1vw, 1.2rem);
    margin-top: clamp(1.5rem, 2.2vw, 2.5rem);
    padding: clamp(0.38rem, 0.5vw, 0.55rem) clamp(0.38rem, 0.5vw, 0.55rem) clamp(0.38rem, 0.5vw, 0.55rem) clamp(1.35rem, 1.6vw, 1.85rem);
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #2468e3 0%, #2468e3 58%, #1b58c4 100%);
    box-shadow:
        0 8px 20px rgba(0, 10, 36, 0.5),
        inset 0 1px 0 rgba(220, 236, 255, 0.55),
        inset 0 -1px 0 rgba(10, 40, 110, 0.28);
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1rem, 1.05vw, 1.2rem);
    font-weight: 400;
    text-decoration: none;
}

.process-cta img {
    display: block;
    flex-shrink: 0;
    width: clamp(2rem, 2.2vw, 2.75rem);
    height: clamp(2rem, 2.2vw, 2.75rem);
    object-fit: contain;
    border-radius: 50%;
}

.process-steps {
    position: relative;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 1.8vw, 1.55rem);
    padding-left: 1.65rem;
}

.process-steps li {
    position: relative;
}

.process-steps li::before {
    content: "";
    position: absolute;
    left: -1.65rem;
    top: 0.55rem;
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 50%;
    background: #62b6f5;
    box-shadow: 0 0 8px rgba(98, 182, 245, 0.55);
}

.process-steps h3 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.15rem, 1.5vw, 1.55rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.process-tag {
    color: #9ca3af;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: clamp(0.88rem, 1.05vw, 1.05rem);
    margin-bottom: 0.35rem;
}

.process-steps p:not(.process-tag) {
    color: #8b919c;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    line-height: 1.55;
    max-width: 34rem;
}

.process-steps li:nth-child(1) {
    opacity: 1;
}

.process-steps li:nth-child(2) {
    opacity: 0.72;
}

.process-steps li:nth-child(3) {
    opacity: 0.55;
}

.process-steps li:nth-child(4) {
    opacity: 0.4;
}

.process-steps li:nth-child(5) {
    opacity: 0.28;
}

.process-steps li:nth-child(6) {
    opacity: 0.18;
}

@media (max-width: 960px) {
    .process-inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        align-items: start;
    }

    .process-copy h2 {
        max-width: none;
    }
}

.why-us-section {
    background-color: #131520;
    background-image:
        radial-gradient(ellipse 42% 55% at 0% 48%, rgba(36, 104, 227, 0.22), transparent 68%),
        radial-gradient(ellipse 38% 50% at 100% 62%, rgba(36, 104, 227, 0.14), transparent 70%);
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6.5rem);
}

.why-us-inner {
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 clamp(1.15rem, 4vw, 3.25rem);
}

.why-us-section h2 {
    text-align: center;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 3.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: clamp(2.25rem, 4.5vw, 3.75rem);
}

.why-us-section h2 span {
    color: #62b6f5;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(1rem, 1.8vw, 1.5rem);
    list-style: none;
}

.why-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    padding: clamp(1.35rem, 2.2vw, 2rem) clamp(1rem, 1.6vw, 1.5rem) clamp(1.5rem, 2.2vw, 1.85rem);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(18, 21, 32, 0) 42%, rgba(36, 104, 227, 0.38) 100%),
        #0c0e16;
    border: 1px solid rgba(98, 182, 245, 0.08);
}

.why-card:nth-child(4) {
    grid-column: 2 / 4;
}

.why-card:nth-child(5) {
    grid-column: 4 / 6;
}

.why-card img {
    display: block;
    width: clamp(7.5rem, 12vw, 10.5rem);
    height: auto;
    margin-bottom: 1rem;
    mix-blend-mode: screen;
    pointer-events: none;
}

.why-card h3 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.05rem, 1.25vw, 1.3rem);
    font-weight: 600;
    line-height: 1.25;
}

.why-card-title {
    color: #62b6f5;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1.05rem, 1.25vw, 1.3rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0.7rem;
}

.why-card p:last-child {
    color: #9ca3af;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.8rem, 0.9vw, 0.92rem);
    line-height: 1.55;
    max-width: 22rem;
}

@media (max-width: 960px) {
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card,
    .why-card:nth-child(4),
    .why-card:nth-child(5) {
        grid-column: auto;
    }

    .why-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 22rem;
        justify-self: center;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
    }
}

.ads-partner-section {
    background-color: #131520;
    background-image: radial-gradient(ellipse 55% 70% at 72% 48%, rgba(36, 104, 227, 0.22), transparent 68%);
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6.5rem);
}

.ads-partner-inner {
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 clamp(1.15rem, 4vw, 3.25rem);
}

.ads-partner-section h2 {
    text-align: center;
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(2.1rem, 4.2vw, 3.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: clamp(2.25rem, 4.5vw, 3.75rem);
}

.ads-partner-section h2 span {
    color: #62b6f5;
}

.ads-partner-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 1.4vw, 1.15rem);
    list-style: none;
}

.ads-partner-row + .ads-partner-row {
    margin-top: clamp(0.75rem, 1.4vw, 1.15rem);
}

.ads-partner-row-4 li {
    flex: 0 1 calc((100% - 3 * clamp(0.75rem, 1.4vw, 1.15rem)) / 4);
    max-width: 16.5rem;
}

.ads-partner-row-5 li {
    flex: 0 1 calc((100% - 4 * clamp(0.75rem, 1.4vw, 1.15rem)) / 5);
    max-width: 14.5rem;
}

.ads-partner-row img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 960px) {
    .ads-partner-row-4 li,
    .ads-partner-row-5 li {
        flex: 0 1 calc((100% - clamp(0.75rem, 1.4vw, 1.15rem)) / 2);
        max-width: none;
    }
}

@media (max-width: 560px) {
    .ads-partner-row-4 li,
    .ads-partner-row-5 li {
        flex: 0 1 100%;
    }
}

.contact-section {
    position: relative;
    overflow: hidden;
    background-color: #131520;
    padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 3.5rem) clamp(3.5rem, 7vw, 6.5rem);
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.contact-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 clamp(1.15rem, 4vw, 3.25rem);
}

.contact-label {
    color: #b0b0b0;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    margin-bottom: 0.7rem;
}

.contact-copy h2 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
    max-width: 14ch;
}

.contact-copy h2 span {
    color: #62b6f5;
}

.contact-lead {
    margin-top: 1.1rem;
    max-width: 32rem;
    color: #9ca3af;
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-size: clamp(0.88rem, 1vw, 1.05rem);
    line-height: 1.6;
}

.contact-features {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    list-style: none;
}

.contact-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
}

.contact-features img {
    display: block;
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
    object-fit: contain;
}

.contact-features h3 {
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-features p {
    color: #9ca3af;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 0.95rem);
    line-height: 1.45;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-details img {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.contact-details a {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.92rem, 1.05vw, 1.05rem);
    text-decoration: none;
}

.contact-details a:hover {
    color: #62b6f5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.35rem, 2.4vw, 2rem);
    border-radius: 18px;
    background: rgba(12, 14, 22, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: #c4c4c4;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 0.92rem);
}

.contact-form label span {
    color: #62b6f5;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    outline: none;
    color-scheme: dark;
}

.contact-form textarea {
    min-height: 7.5rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(98, 182, 245, 0.55);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: rgba(220, 96, 96, 0.65);
}

.contact-form .field-error {
    color: #ffc9c9;
    font-size: 0.78rem;
}

.contact-form label.datetime-gmt {
    gap: 0.65rem;
}

.datetime-gmt-tzwrap {
    position: relative;
}

.datetime-gmt-picker {
    position: relative;
}

.datetime-gmt-picker button {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: #d8d8d8;
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    text-align: left;
    cursor: pointer;
}

.datetime-gmt-picker button:hover,
.datetime-gmt-picker.is-open button {
    border-color: rgba(98, 182, 245, 0.45);
}

.datetime-gmt-picker ul {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    max-height: 14rem;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    overflow-y: auto;
    border-radius: 10px;
    background: rgba(16, 18, 28, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.datetime-gmt-picker li {
    padding: 0.55rem 0.95rem;
    color: #d0d0d0;
    font-family: "Inter", sans-serif;
    font-size: 0.86rem;
    cursor: pointer;
}

.datetime-gmt-picker li:hover,
.datetime-gmt-picker li.is-selected {
    background: rgba(98, 182, 245, 0.14);
    color: #fff;
}

.form-status {
    display: none;
    margin: 0;
    padding: 0.75rem 0.95rem;
    border-radius: 10px;
    color: #ffc9c9;
    background: rgba(120, 34, 34, 0.22);
    border: 1px solid rgba(220, 96, 96, 0.35);
    font-family: "Inter", sans-serif;
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
}

.form-status.is-visible {
    display: block;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.4rem 0.4rem 0.4rem 1.35rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, #2468e3 0%, #2468e3 58%, #1b58c4 100%);
    box-shadow:
        0 8px 20px rgba(0, 10, 36, 0.5),
        inset 0 1px 0 rgba(220, 236, 255, 0.55),
        inset 0 -1px 0 rgba(10, 40, 110, 0.28);
    color: #fff;
    font-family: "Figtree", sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.2rem);
    font-weight: 600;
    cursor: pointer;
}

.contact-form button img {
    display: block;
    width: 2.35rem;
    height: 2.35rem;
    object-fit: contain;
    border-radius: 50%;
}

.contact-form button:disabled {
    opacity: 0.72;
    cursor: wait;
}

.site-footer {
    background: #0a0c12;
    padding: 1.15rem 1.25rem;
    text-align: center;
}

.site-footer p {
    color: #cfcfcf;
    font-family: "Inter", sans-serif;
    font-size: clamp(0.78rem, 0.9vw, 0.9rem);
}

@media (max-width: 960px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .contact-copy h2 {
        max-width: none;
    }
}
