
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.intro {
    position: absolute;
    left: 30px;
    top: 15px;
    z-index: 999;
}

.intro img {
    max-width: 120px;
    display: block;
}

.hero-cta {
    margin-top: 8px;
}

.hero-cta .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    padding: 16px 36px;
    border-radius: 4px;
    background: linear-gradient(131deg, #1bed77 15%, #1bdd8a 41%, #1eca86 91%);
    box-shadow: 0 4px 15px rgba(7, 205, 90, 0.27);
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    transition:
        transform 0.15s,
        box-shadow 0.15s;
}

.hero-cta .btn-main:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(7, 205, 90, 0.35);
}

.soft-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 32px;
    margin: 24px auto 0;
    max-width: 720px;
    font-size: 14px;
    color: #666;
}

.soft-meta dt {
    display: inline;
    font-weight: 600;
    color: #333;
}

.soft-meta dd {
    display: inline;
    margin: 0 0 0 4px;
}

.site-footer {
    text-align: center;
    padding: 20px 0;
    background: #f1f3f4;
    line-height: 32px;
    color: #666;
    font-size: 14px;
}

.site-footer p {
    margin: 0;
}

body {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1e1e1e;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #64b5ef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #1e1e1e;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
}

.nav-links a {
    color: #1e1e1e;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: #64b5ef;
}

.nav-download {
    background: #64b5ef;
    color: white !important;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    transition:
        background 0.2s,
        transform 0.1s;
}

.nav-download:hover {
    background: #4ca5e0 !important;
    transform: scale(0.97);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: default;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #1e1e1e;
    border-radius: 4px;
}

.download-hero {
    padding: 50px 0 30px;
    text-align: center;
}

.download-hero h1 {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.download-hero h1 span {
    color: #64b5ef;
}

.download-hero p {
    font-size: 18px;
    color: #4d4d4d;
    max-width: 560px;
    margin: 0 auto 20px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin: 40px 0 50px;
}

.platform-card {
    background: #f9fbfd;
    border: 1px solid #e9ecef;
    border-radius: 32px;
    padding: 28px 16px 22px;
    text-align: center;
    transition:
        border 0.2s,
        box-shadow 0.2s,
        transform 0.1s;
}

.platform-card:hover {
    border-color: #64b5ef;
    box-shadow: 0 8px 24px rgba(100, 181, 239, 0.08);
    transform: translateY(-4px);
}

.platform-card .icon {
    font-size: 44px;
    margin-bottom: 10px;
    display: block;
}

.platform-card .name {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.platform-card .sub {
    color: #4d4d4d;
    font-size: 14px;
    margin-bottom: 14px;
}

.platform-card .btn-download {
    background: #64b5ef;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: background 0.2s;
}

.platform-card .btn-download:hover {
    background: #4ca5e0;
}

.platform-card .btn-download.outline {
    background: transparent;
    color: #1e1e1e;
    border: 1.5px solid #d0d0d0;
}

.platform-card .btn-download.outline:hover {
    border-color: #64b5ef;
    background: rgba(100, 181, 239, 0.04);
}

.feature-download {
    background: #f0f6fc;
    border-radius: 40px;
    padding: 40px 30px;
    margin: 30px 0 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.feature-download .left {
    flex: 2 1 280px;
}

.feature-download .left h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-download .left p {
    color: #4d4d4d;
    font-size: 16px;
    max-width: 400px;
}

.feature-download .qr-area {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.qr-box {
    background: white;
    border-radius: 24px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.qr-box .qr-icon {
    font-size: 52px;
}

.qr-box .qr-text {
    font-weight: 500;
}

.qr-box .qr-text small {
    display: block;
    color: #4d4d4d;
    font-weight: 400;
    font-size: 13px;
}

.store-badge {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-badge a {
    background: #1e1e1e;
    color: white;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.store-badge a:hover {
    background: #2d2d2d;
}

.store-badge a.light {
    background: white;
    color: #1e1e1e;
    border: 1px solid #d0d0d0;
}

.store-badge a.light:hover {
    border-color: #64b5ef;
}

.sys-info {
    background: #f8fafc;
    border-radius: 40px;
    padding: 30px 28px;
    margin: 20px 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px 50px;
    justify-content: center;
}

.sys-info .item {
    text-align: center;
}

.sys-info .item .label {
    font-weight: 600;
    color: #1e1e1e;
}

.sys-info .item .desc {
    color: #4d4d4d;
    font-size: 14px;
}

.faq-download {
    padding: 40px 0 60px;
    border-top: 1px solid #f0f0f0;
}

.faq-download h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.faq-download .sub {
    color: #4d4d4d;
    margin-bottom: 32px;
    font-size: 17px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.faq-item {
    background: #f9fbfd;
    border-radius: 28px;
    padding: 26px 28px;
    border: 1px solid #edf2f7;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-item .q-icon {
    background: #64b5ef10;
    border-radius: 40px;
    padding: 0 12px;
    font-size: 14px;
    color: #64b5ef;
}

.faq-step {
    padding-left: 8px;
    border-left: 3px solid #64b5ef40;
    margin-bottom: 12px;
}

.faq-step strong {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #1e1e1e;
}

.faq-step p {
    color: #2c2c2c;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 2px;
}

.faq-step .step-label {
    font-weight: 600;
    color: #64b5ef;
    font-size: 14px;
}

.footer {
    padding: 30px 0 24px;
    border-top: 1px solid #eef2f6;
    color: #4d4d4d;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-links a {
    margin-right: 24px;
    color: #4d4d4d;
}
.footer-links a:hover {
    color: #64b5ef;
}

@media (max-width: 850px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .download-hero h1 {
        font-size: 34px;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .feature-download {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .download-hero h1 {
        font-size: 28px;
    }
    .store-badge a {
        padding: 8px 14px;
        font-size: 13px;
    }
    .qr-box {
        flex-direction: column;
        text-align: center;
    }
}
@font-face {
    font-family: "Inter var";
    font-weight: 100 900;
    font-display: swap;
    font-style: normal;
    font-named-instance: "Regular";
    src: url("chrome-extension://infppggnoaenmfagbfknfkancpbljcca/Inter-roman-latin.var.woff2")
        format("woff2");
}
.automa-element-selector {
    direction: ltr;
}
[automa-isDragging] {
    user-select: none;
}
[automa-el-list] {
    outline: 2px dashed #6366f1;
}