:root {
    --bg-color: #0f1114;
    --text-white: #ffffff;
    --accent-green: #3befb7;
    --font-primary: MiSans, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
    --secondary-text: rgba(255, 255, 255, 0.6);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-primary);
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden; /* Prevent horizontal scroll from wide elements */
}

.container {
    width: 100%;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background-color: var(--bg-color); /* Reset to dark background */
    min-height: 100vh; /* Ensure it covers height */
}

/* Background Glow */
.background-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 675px;
    height: 235px;
    z-index: 0;
    pointer-events: none;
}

.glow-circle-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 466px;
    height: 235px;
    border-radius: 50%;
    background: #2cffa9;
    opacity: 0.2;
    filter: blur(68px);
}

.glow-circle-2 {
    position: absolute;
    top: 44px;
    left: 353px;
    width: 322px;
    height: 139px;
    border-radius: 50%;
    background: #2ebaff;
    opacity: 0.2;
    filter: blur(68px);
}

/* Header */
.header-section {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 0; /* Remove margin to connect with hero section */
    background: rgba(255, 255, 255, 0.05); /* Added gray background */
    padding-bottom: 20px; /* Add bottom padding */
}

.header-frame {
    position: relative;
    width: 109px;
    height: 26px;
}

.logo-icon {
    position: absolute;
    top: 3px;
    left: 2px;
    width: 31px;
    height: 21px;
}

.logo-text {
    position: absolute;
    top: 5px;
    left: 41px;
    width: 66px;
    height: 16px;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.05); /* Match hero-image-area background */
    padding-top: 20px; /* Add some padding if needed since we added background */
}

.hero-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.features-row {
    display: flex;
    justify-content: space-between;
    width: 240px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 42px;
}

.feature-icon-img {
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.6;
    line-height: 17px;
    white-space: nowrap;
}

/* Complex Global Node Icon */
.global-node-icon {
    position: relative;
    width: 42px;
    height: 42px;
    margin-bottom: 8px;
}

.ring-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.ring-middle {
    display: flex;
    position: absolute;
    top: 12px;
    left: 12px;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    padding: 2px;
}

.ring-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.dot-core {
    width: 3px;
    height: 3px;
    background: var(--accent-green);
    border-radius: 50%;
}

.tick-mark {
    position: absolute;
    top: 13px;
    left: 23px;
    width: 2px;
    height: 9px;
    background: var(--accent-green);
    border-radius: 1px;
    transform: rotate(45deg);
}

.download-btn-wrapper {
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 115px;
    height: 40px;
    background: var(--accent-green);
    color: #26282b;
    border-radius: 38px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 239, 183, 0.3);
}

.btn-icon {
    width: 14px;
    height: 14px;
}

.btn-text {
    font-size: 14px;
    font-weight: 600;
    color: inherit;
    line-height: 20px;
}

/* Hero Image Area */
.hero-image-area {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05); /* Added gray background */
}

.hero-bg-frame {
    position: relative;
    width: 100%;
    max-width: 427px;
    height: auto;
    aspect-ratio: 427 / 442;
    background-image: url('img/mks93iwi-afdm280.png');
    background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.float-tag {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: 2px 6px;
    font-size: 8px;
    font-weight: 700;
    color: #26282b;
}

.tag-50m {
    top: 14.9%;
    left: 8.9%;
}

.tag-10gbps {
    position: absolute;
    top: 69.2%;
    right: 9.4%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tag-icon {
    width: 15px;
    height: 9px;
    transform: rotate(90deg);
}

.tag-content {
    background: #fff;
    border-radius: 8px;
    padding: 2px 6px;
    display: flex;
    align-items: center;
}

.tag-text {
    font-size: 8px;
    font-weight: 700;
    color: #26282b;
}

/* Apps Section */
.apps-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    padding-top: 20px;
    background-color: var(--bg-color); /* Black background */
    margin-top: 0;
}

.apps-title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding-top: 20px;
}

.bracket-icon {
    width: 19px;
    height: 14px;
}

.apps-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 33px;
}

.apps-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 24px;
}

.apps-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;
    line-height: 24px;
    margin-top: 2px;
}

.apps-orbit-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 20px;
}

.orbit-image {
    width: 383px;
    max-width: 100%;
    height: auto;
}

/* Feature List */
.features-list {
    padding: 30px 0;
    background: rgba(255, 255, 255, 0.05); /* Match hero-image-area gray background */
}

.feature-block {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 10px;
}

.feature-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-desc {
    font-size: 12px;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: 35px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.feature-img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0; /* Added padding */
}

.feature-img img {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Reduced to match original visual size */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #0f1114; /* Match bg */
    padding: 20px 15px; /* Reduced from 40px 15px 30px */
    font-size: 12px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0; /* Reduced from 30px since it's the only content */
}

.footer-logo {
    position: relative;
    width: 109px;
    height: 26px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.contact-btn img {
    height: 14px;
}

/* Policy Notice */
.policy-notice {
    padding: 15px 20px;
    margin: 0;
    background: rgba(255, 77, 77, 0.08);
    border-top: 1px solid rgba(255, 77, 77, 0.2);
    border-bottom: 1px solid rgba(255, 77, 77, 0.2);
}

.policy-notice p {
    font-size: 12px;
    line-height: 1.8;
    color: #ff4d4d;
    text-align: center;
    max-width: 340px;
    margin: 0 auto;
    font-weight: 600;
}

.desktop-page {
    display: none;
}

@media (min-width: 1024px) {
    body {
        display: block;
        padding: 0;
        background: #1a1c20;
    }

    .container {
        display: none;
    }

    .desktop-page {
        display: block;
        width: 100%;
        color: #ffffff;
        background: #1a1c20;
    }

    .desktop-page .container {
        display: block;
        width: auto;
        max-width: 1200px;
        min-height: auto;
        margin: 0 auto;
        padding: 0 24px;
        position: static;
        overflow: visible;
        background: transparent;
    }

    .desktop-page a {
        text-decoration: none;
        color: inherit;
    }

    .desktop-page .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(26, 28, 32, 0.9);
        backdrop-filter: blur(10px);
        padding: 20px 0;
    }

    .desktop-page .header__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .desktop-page .logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .desktop-page .logo__icon {
        width: 32px;
        height: 32px;
    }

    .desktop-page .logo__text {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
    }

    .desktop-page .nav__list {
        display: flex;
        gap: 40px;
        list-style: none;
    }

    .desktop-page .nav__link {
        font-size: 16px;
        font-weight: 500;
        opacity: 0.8;
        text-decoration: none;
    }

    .desktop-page .nav__link:hover {
        opacity: 1;
        color: var(--accent-green);
    }

    .desktop-page .hero {
        padding-top: 160px;
        padding-bottom: 80px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .desktop-page .hero::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 150%;
        background: radial-gradient(circle, rgba(59, 239, 183, 0.1) 0%, rgba(26, 28, 32, 0) 70%);
        z-index: -1;
    }

    .desktop-page .hero__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .desktop-page .hero__content {
        max-width: 600px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .desktop-page .hero__text-group {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .desktop-page .hero__title-main {
        font-size: 64px;
        font-weight: 800;
        line-height: 85px;
        color: #ffffff;
    }

    .desktop-page .hero__title-sub {
        font-size: 64px;
        font-weight: 300;
        line-height: 85px;
        color: #ffffff;
    }

    .desktop-page .hero__actions {
        display: grid;
        grid-template-columns: repeat(2, 200px);
        gap: 24px 36px;
        margin-top: 72px;
    }

    .desktop-page .btn-download {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 200px;
        height: 64px;
        background-color: #3befb7;
        border-radius: 38px;
        padding: 0 36px;
        color: #26282b;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .desktop-page .btn-download:hover {
        background-color: #32d4a2;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(59, 239, 183, 0.4);
    }

    .desktop-page .btn-download__icon {
        width: 24px;
        height: 24px;
    }

    .desktop-page .btn-download__text {
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        flex-grow: 1;
        text-align: center;
    }

    .desktop-page .features-strip {
        display: flex;
        justify-content: space-between;
        width: 396px;
        margin-top: 54px;
    }

    .desktop-page .features-strip__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .desktop-page .features-strip__icon-wrapper,
    .desktop-page .features-strip__img,
    .desktop-page .features-strip__custom-icon {
        width: 84px;
        height: 84px;
    }

    .desktop-page .features-strip__text {
        margin-top: 16px;
        font-size: 16px;
        font-weight: 500;
        color: #ffffff;
        opacity: 0.6;
        line-height: 22px;
        white-space: nowrap;
    }

    .desktop-page .features-strip__custom-icon {
        position: relative;
    }

    .desktop-page .target-outer-ring {
        position: absolute;
        top: 0;
        left: 0;
        width: 84px;
        height: 84px;
        border: 2px solid #ffffff;
        opacity: 0.1;
        border-radius: 50%;
    }

    .desktop-page .target-middle-ring {
        position: absolute;
        top: 24px;
        left: 24px;
        width: 36px;
        height: 36px;
        border: 3px solid #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
    }

    .desktop-page .target-inner-ring {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border: 3px solid #ffffff;
        border-radius: 50%;
    }

    .desktop-page .target-center-dot {
        width: 6px;
        height: 6px;
        background-color: #3befb7;
        border-radius: 50%;
    }

    .desktop-page .target-needle {
        position: absolute;
        top: 27px;
        left: 47px;
        width: 3px;
        height: 18px;
        background-color: #3befb7;
        border-radius: 2px;
        transform: rotate(45deg);
    }

    .desktop-page .hero__image-wrapper {
        position: relative;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        animation: desktop-float 6s ease-in-out infinite;
    }

    .desktop-page .hero__mockup {
        width: 560px;
        max-width: 100%;
        height: auto;
        display: block;
    }

    .desktop-page .hero-badge {
        position: absolute;
        background: #ffffff;
        border-radius: 15px;
        padding: 4px 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float-badge 4s ease-in-out infinite;
        pointer-events: none;
    }

    .desktop-page .hero-badge--speed {
        top: 25%;
        right: 5%;
        animation-delay: 1s;
    }

    .desktop-page .hero-badge--users {
        bottom: 25%;
        left: 5%;
        animation-delay: 2s;
    }

    .desktop-page .hero-badge__img {
        display: block;
        width: auto;
        height: auto;
        max-width: none;
    }

    .desktop-page .orbit {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        background-color: #000000;
    }

    .desktop-page .section-header {
        margin-bottom: 80px;
    }

    .desktop-page .section-title {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .desktop-page .section-subtitle {
        font-size: 24px;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 300;
    }

    .desktop-page .orbit__visual {
        position: relative;
        width: 800px;
        height: 800px;
        margin: 0 auto;
    }

    .desktop-page .orbit__bg {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .desktop-page .orbit__icon {
        position: absolute;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .desktop-page .orbit__icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    }

    .desktop-page .orbit__icon--1 { top: 22%; left: 78%; transform: translate(-50%, -50%); }
    .desktop-page .orbit__icon--2 { top: 38%; left: 45%; transform: translate(-50%, -50%); }
    .desktop-page .orbit__icon--3 { top: 35%; left: 22%; transform: translate(-50%, -50%); }
    .desktop-page .orbit__icon--4 { top: 50%; left: 68%; transform: translate(-50%, -50%); }
    .desktop-page .orbit__icon--5 { top: 70%; left: 80%; transform: translate(-50%, -50%); }
    .desktop-page .orbit__icon--6 { top: 75%; left: 55%; transform: translate(-50%, -50%); }
    .desktop-page .orbit__icon--7 { top: 82%; left: 40%; transform: translate(-50%, -50%); }

    .desktop-page .features {
        padding: 100px 0;
        background-color: #1a1c20;
    }

    .desktop-page .features__grid {
        display: flex;
        flex-direction: column;
        gap: 120px;
    }

    .desktop-page .feature-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .desktop-page .feature-card--reverse {
        direction: rtl;
    }

    .desktop-page .feature-card--reverse .feature-card__content {
        direction: ltr;
    }

    .desktop-page .feature-card__content {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .desktop-page .feature-card__title {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.2;
        color: #ffffff;
    }

    .desktop-page .feature-card__text {
        max-width: 600px;
        font-size: 18px;
        line-height: 1.6;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
    }

    .desktop-page .feature-card__image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-page .feature-card__image img {
        max-width: 100%;
        max-height: 400px;
        width: auto;
        height: auto;
    }

    .desktop-page .platforms {
        padding: 100px 0;
        background-color: #0d0e10;
    }

    .desktop-page .platforms .section-title {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .desktop-page .title-highlight {
        font-weight: 800;
    }

    .desktop-page .title-light {
        font-weight: 300;
    }

    .desktop-page .title-slashes {
        color: #3befb7;
        font-weight: 800;
        letter-spacing: -2px;
        font-style: italic;
        font-family: sans-serif;
    }

    .desktop-page .platforms__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 60px;
    }

    .desktop-page .platform-card {
        background: rgba(255, 255, 255, 0.03);
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        border: 1px solid transparent;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .desktop-page .platform-card__icon-wrapper {
        width: 80px;
        height: 80px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        background: rgba(255, 255, 255, 0.02);
    }

    .desktop-page .platform-card__icon {
        width: 40px;
        height: 40px;
        filter: brightness(0) invert(1);
    }

    .desktop-page .platform-card__title {
        font-size: 18px;
        margin-bottom: 32px;
        font-weight: 500;
        opacity: 0.8;
    }

    .desktop-page .btn--block {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 8px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
    }

    .desktop-page .btn--mint {
        background-color: #3befb7;
        color: #26282b;
        border: none;
        border-radius: 32px;
        padding: 12px 24px;
        min-height: 48px;
    }

    .desktop-page .btn__icon {
        width: 16px;
        height: 16px;
    }

    .desktop-shell {
        width: min(1200px, calc(100% - 48px));
        margin: 0 auto;
    }

    .desktop-header {
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(26, 28, 32, 0.92);
        backdrop-filter: blur(12px);
    }

    .desktop-header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
    }

    .desktop-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .desktop-logo-icon {
        width: 32px;
        height: 32px;
    }

    .desktop-logo-word {
        font-size: 24px;
        font-weight: 700;
        color: #ffffff;
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .desktop-nav-link {
        color: rgba(255, 255, 255, 0.82);
        font-size: 16px;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .desktop-nav-link:hover {
        color: var(--accent-green);
    }

    .desktop-hero {
        position: relative;
        min-height: calc(100vh - 72px);
        padding: 92px 0 80px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .desktop-hero::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 150%;
        background: radial-gradient(circle, rgba(59, 239, 183, 0.1) 0%, rgba(26, 28, 32, 0) 70%);
        pointer-events: none;
    }

    .desktop-hero-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .desktop-hero-copy {
        max-width: 600px;
    }

    .desktop-title-group {
        margin-bottom: 0;
    }

    .desktop-hero-title,
    .desktop-hero-subtitle {
        font-size: 64px;
        line-height: 85px;
        color: #ffffff;
    }

    .desktop-hero-title {
        font-weight: 800;
    }

    .desktop-hero-subtitle {
        font-weight: 300;
    }

    .desktop-features-strip {
        display: flex;
        justify-content: space-between;
        width: 396px;
        margin-top: 54px;
        margin-bottom: 0;
    }

    .desktop-strip-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .desktop-strip-icon,
    .desktop-global-node-icon {
        width: 84px;
        height: 84px;
    }

    .desktop-strip-text {
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        line-height: 22px;
    }

    .desktop-global-node-icon {
        position: relative;
    }

    .desktop-ring-outer {
        position: absolute;
        inset: 0;
        border: 2px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .desktop-ring-middle {
        position: absolute;
        top: 24px;
        left: 24px;
        width: 36px;
        height: 36px;
        border: 3px solid #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
    }

    .desktop-ring-inner {
        width: 100%;
        height: 100%;
        border: 3px solid #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-dot-core {
        width: 6px;
        height: 6px;
        background: var(--accent-green);
        border-radius: 50%;
    }

    .desktop-tick-mark {
        position: absolute;
        top: 27px;
        left: 47px;
        width: 3px;
        height: 18px;
        background: var(--accent-green);
        border-radius: 2px;
        transform: rotate(45deg);
    }

    .desktop-actions {
        display: grid;
        grid-template-columns: repeat(2, 200px);
        gap: 24px 36px;
        margin-top: 72px;
    }

    .desktop-download-btn {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 200px;
        height: 64px;
        padding: 0 36px;
        border-radius: 38px;
        background: var(--accent-green);
        color: #26282b;
        text-decoration: none;
        font-size: 20px;
        font-weight: 600;
        box-shadow: 0 4px 18px rgba(59, 239, 183, 0.28);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .desktop-download-btn:hover,
    .desktop-platform-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(59, 239, 183, 0.4);
    }

    .desktop-download-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 auto;
    }

    .desktop-download-btn span {
        flex: 1;
        text-align: center;
        transform: none;
        font-size: 20px;
        line-height: 28px;
    }

    .desktop-hero-visual-frame {
        position: relative;
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        animation: desktop-float 6s ease-in-out infinite;
    }

    .desktop-hero-mockup {
        width: 100%;
        height: auto;
        display: block;
    }

    .desktop-float-badge {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .desktop-float-badge-users {
        bottom: 25%;
        left: 5%;
    }

    .desktop-float-badge-speed {
        top: 25%;
        right: 5%;
    }

    .desktop-float-badge-img {
        display: block;
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .desktop-orbit {
        padding: 110px 0 90px;
        background: #000000;
    }

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

    .desktop-section-title {
        font-size: 48px;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 14px;
    }

    .desktop-section-subtitle {
        font-size: 24px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.66);
    }

    .desktop-orbit-visual {
        display: flex;
        justify-content: center;
    }

    .desktop-orbit-image {
        width: min(100%, 820px);
        height: auto;
    }

    .desktop-features {
        padding: 110px 0;
        background: #1a1c20;
    }

    .desktop-feature-stack {
        display: flex;
        flex-direction: column;
        gap: 120px;
    }

    .desktop-feature-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 80px;
        align-items: center;
    }

    .desktop-feature-card-reverse {
        direction: rtl;
    }

    .desktop-feature-card-reverse .desktop-feature-copy {
        direction: ltr;
    }

    .desktop-feature-title {
        font-size: 48px;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 24px;
    }

    .desktop-feature-text {
        max-width: 580px;
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.6);
    }

    .desktop-feature-media {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .desktop-feature-media img {
        max-width: 100%;
        max-height: 400px;
        width: auto;
        height: auto;
    }

    .desktop-platforms {
        padding: 110px 0;
        background: #0d0e10;
    }

    .desktop-platforms-title span {
        color: var(--accent-green);
        font-style: italic;
    }

    .desktop-platform-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .desktop-platform-card {
        padding: 40px 30px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.03);
        text-align: center;
    }

    .desktop-platform-card-title {
        margin-bottom: 24px;
        font-size: 20px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.84);
    }

    .desktop-platform-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 999px;
        background: var(--accent-green);
        color: #26282b;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .desktop-footer {
        padding: 60px 0 40px;
        background: #1a1c20;
    }

    .desktop-footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .desktop-footer-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
    }
}

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

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