.desktop-page {
    padding-top: 64px;
    background: #fff;
    color: #100d24;
}

.desktop-hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 80px;
    background:
        radial-gradient(ellipse 70% 80% at 92% 8%, rgba(253, 43, 84, 0.1), transparent 52%),
        linear-gradient(180deg, #fff8f9 0%, #ffffff 78%);
}

.desktop-hero-inner,
.desktop-section-inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.desktop-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 56px;
}

.desktop-hero-copy {
    min-width: 0;
}

.desktop-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: #fd2b54;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.desktop-hero-copy h1 {
    margin: 0 0 16px;
    font-size: 36px;
    line-height: 1.28;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.desktop-lead {
    margin: 0 0 28px;
    font-size: 17px;
    line-height: 1.75;
    color: #595a5c;
}

.desktop-cta-groups {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.desktop-cta-label {
    font-size: 13px;
    font-weight: 600;
    color: #8b8c8f;
    margin-bottom: 8px;
}

.desktop-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.desktop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    box-sizing: border-box;
    border: 1px solid #e6e6e8;
    background: #fff;
    color: #100d24;
    transition: background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.desktop-btn-win:hover,
.desktop-btn-mac:hover {
    border-color: #100d24;
    color: #100d24;
}

.desktop-btn.is-primary {
    background: #100d24;
    color: #fff;
    border-color: #100d24;
    box-shadow: 0 8px 20px rgba(16, 13, 36, 0.16);
}

.desktop-btn.is-primary:hover {
    background: #2a2738;
    color: #fff;
}

.desktop-btn-disabled {
    background: #f7f8fa;
    color: #8b8c8f;
    border-color: #eeeef1;
    cursor: default;
}

.desktop-btn-disabled.is-primary {
    background: #100d24;
    color: rgba(255, 255, 255, 0.62);
    border-color: #100d24;
    box-shadow: none;
}

.desktop-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: #8b8c8f;
    line-height: 1.8;
}

.desktop-meta a {
    color: #595a5c;
}

.desktop-meta a:hover {
    color: #fd2b54;
}

.desktop-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #d8d8dc;
    margin: 0 10px;
}

.desktop-mobile-tip {
    display: none;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #8b8c8f;
}

.desktop-page.is-mobile .desktop-mobile-tip {
    display: block;
}

.desktop-hero-preview {
    min-width: 0;
}

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

.desktop-section {
    padding: 80px 0;
    background: #fff;
}

.desktop-section-alt {
    background: #f7f8fa;
}

.desktop-section-head {
    max-width: 640px;
    margin-bottom: 32px;
}

.desktop-section-head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.desktop-section-head .desktop-section-lead {
    margin-top: 10px;
}

.desktop-section-lead {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #595a5c;
}

.desktop-features,
.desktop-tips,
.desktop-others {
    display: grid;
    gap: 16px;
}

.desktop-features,
.desktop-others {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.desktop-tips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.desktop-feature,
.desktop-tip,
.desktop-other {
    background: #fff;
    border: 1px solid #eeeef1;
    border-radius: 16px;
    padding: 24px 22px;
    box-sizing: border-box;
}

.desktop-feature-head,
.desktop-tip-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.desktop-feature-icon,
.desktop-other-icon {
    display: block;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;
}

.desktop-feature h3,
.desktop-tip h3,
.desktop-other strong {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #100d24;
}

.desktop-feature p,
.desktop-tip p,
.desktop-other span {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #595a5c;
}

.desktop-other {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: flex-start;
    gap: 8px;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.desktop-other strong {
    line-height: 22px;
}

.desktop-other span {
    flex: 1 1 100%;
}

.desktop-other:hover {
    border-color: #e4e4e8;
    box-shadow: 0 12px 32px rgba(16, 13, 36, 0.05);
}

.desktop-other:hover strong {
    color: #fd2b54;
}

@media (max-width: 1100px) {
    .desktop-hero-inner {
        gap: 40px;
    }

    .desktop-hero-copy h1 {
        font-size: 32px;
    }
}

@media (max-width: 960px) {
    .desktop-hero {
        padding: 48px 0 40px;
    }

    .desktop-hero-inner,
    .desktop-features,
    .desktop-tips,
    .desktop-others {
        grid-template-columns: 1fr;
    }

    .desktop-hero-copy h1 {
        font-size: 28px;
    }

    .desktop-section {
        padding: 56px 0;
    }
}

@media (max-width: 640px) {
    .desktop-hero-inner,
    .desktop-section-inner {
        padding: 0 16px;
    }

    .desktop-btn {
        flex: 1 1 100%;
        min-width: 0;
    }
}
