:root {
    --bg: #07110f;
    --bg-soft: #0b1714;
    --panel: #101e1a;
    --panel-light: #172822;
    --line: rgba(194, 239, 219, .14);
    --text: #eff8f3;
    --muted: #91a49b;
    --green: #37f29b;
    --green-dark: #13bd73;
    --cream: #dce8d2;
    --orange: #e4ff75;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 82% 8%, rgba(35, 192, 126, .12), transparent 25rem),
        var(--bg);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    width: min(calc(100% - 48px), var(--max));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 38px;
    position: relative;
    z-index: 15;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #07110f;
    background: var(--green);
    font: 800 28px/1 Arial, sans-serif;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    padding-top: 11px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 16px;
    letter-spacing: .12em;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font: 600 8px/1.2 Arial, sans-serif;
    letter-spacing: .22em;
}

.main-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.main-nav a,
.footer-links a {
    color: #adbbb4;
    font-size: 13px;
    transition: color .25s ease;
}

.main-nav a:hover,
.footer-links a:hover {
    color: var(--green);
}

.header-cta {
    padding: 12px 18px;
    color: var(--green);
    border: 1px solid rgba(55, 242, 155, .5);
    font-size: 13px;
    transition: background .25s ease, color .25s ease;
}

.header-cta:hover {
    color: var(--bg);
    background: var(--green);
}

.menu-toggle {
    display: none;
}

.hero {
    width: min(calc(100% - 48px), var(--max));
    min-height: 660px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 70px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    position: absolute;
    right: 8%;
    background: rgba(39, 226, 143, .12);
    filter: blur(90px);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image:
        linear-gradient(rgba(92, 240, 172, .17) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 240, 172, .17) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(to right, transparent 24%, #000);
}

.hero-content,
.hero-visual {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--green);
    font: 700 11px/1.4 Arial, sans-serif;
    letter-spacing: .18em;
}

.eyebrow span {
    width: 28px;
    height: 1px;
    background: var(--green);
    box-shadow: 9px 3px 0 rgba(55, 242, 155, .5);
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 5.3vw, 74px);
    line-height: 1.08;
    letter-spacing: -.06em;
}

.hero h1 em {
    color: var(--green);
    font-style: normal;
}

.hero-copy {
    max-width: 520px;
    margin: 28px 0 0;
    color: #a9bbb2;
    font-size: 16px;
    line-height: 1.95;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #06110d;
    background: var(--green);
}

.button-primary:hover {
    background: #79ffc0;
}

.button-ghost {
    color: #cad9d1;
    border-color: var(--line);
    background: rgba(255, 255, 255, .02);
}

.button-ghost:hover {
    border-color: rgba(55, 242, 155, .55);
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #81948b;
    font-size: 11px;
}

.hero-notes i {
    color: var(--green);
    font-style: normal;
}

.hero-visual {
    height: 500px;
    margin-right: -50px;
    border: 1px solid rgba(55, 242, 155, .23);
    clip-path: polygon(7% 0, 100% 0, 100% 91%, 93% 100%, 0 100%, 0 8%);
    background: #0c1714;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .42);
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 14, 11, .82), transparent 35%),
        linear-gradient(0deg, rgba(4, 14, 11, .75), transparent 42%);
    pointer-events: none;
}

.hero-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .78;
    filter: saturate(.78) contrast(1.08);
}

.visual-status {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 28px;
    padding: 8px 12px;
    color: #c8d8d0;
    background: rgba(4, 13, 10, .72);
    border: 1px solid var(--line);
    font: 700 9px/1 Arial, sans-serif;
    letter-spacing: .16em;
}

.visual-status span {
    width: 6px;
    height: 6px;
    margin-right: 7px;
    display: inline-block;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
}

.scan-line {
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: .4;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    animation: scan 5s linear infinite;
}

@keyframes scan {
    from { transform: translateY(20px); }
    to { transform: translateY(470px); }
}

.visual-card {
    position: absolute;
    z-index: 5;
    background: rgba(5, 18, 14, .88);
    border: 1px solid rgba(55, 242, 155, .25);
    backdrop-filter: blur(10px);
}

.visual-card-top {
    top: 64px;
    right: 18px;
    padding: 14px 16px;
}

.visual-card small,
.visual-card strong {
    display: block;
}

.visual-card small {
    margin-bottom: 5px;
    color: #73877e;
    font-size: 9px;
}

.visual-card strong {
    font: 700 13px/1.2 Arial, sans-serif;
}

.visual-card b {
    margin-left: 8px;
    color: var(--green);
    font-size: 8px;
}

.visual-card-bottom {
    left: 28px;
    bottom: 25px;
    padding: 13px 18px 13px 13px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.radar {
    width: 36px;
    height: 36px;
    display: block;
    border: 1px solid rgba(55, 242, 155, .5);
    border-radius: 50%;
    background:
        radial-gradient(circle, var(--green) 0 2px, transparent 3px),
        conic-gradient(from 25deg, rgba(55, 242, 155, .5), transparent 22%, transparent);
}

.visual-card p {
    margin: 0;
}

.signal-bar {
    width: 100%;
    min-height: 76px;
    padding: 0 max(24px, calc((100% - var(--max)) / 2));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    background: var(--green);
    color: #07110f;
}

.signal-bar p {
    margin: 0;
    padding: 0 30px;
    font-size: 12px;
    font-weight: 700;
    border-left: 1px solid rgba(7, 17, 15, .2);
}

.signal-bar p:first-child {
    border-left: 0;
    padding-left: 0;
}

.signal-bar span {
    margin-right: 10px;
    opacity: .55;
    font: 700 10px/1 Arial, sans-serif;
}

.section {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.section-heading h2,
.platform-intro h2,
.service h2,
.faq h2 {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 56px);
    line-height: 1.16;
    letter-spacing: -.045em;
}

.section-heading > p,
.platform-intro > p,
.service-content > p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feature-card {
    min-height: 300px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--line);
    transition: border-color .25s ease, transform .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(55, 242, 155, .4);
}

.feature-card-large {
    grid-row: span 2;
    min-height: 614px;
    background:
        radial-gradient(circle at 70% 82%, rgba(55, 242, 155, .13), transparent 35%),
        var(--panel);
}

.feature-card-accent {
    color: #07110f;
    background: var(--green);
}

.feature-number {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #5f746a;
    font: 700 10px/1 Arial, sans-serif;
}

.feature-card-accent .feature-number {
    color: rgba(7, 17, 15, .5);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--green);
    border: 1px solid rgba(55, 242, 155, .3);
    font: 400 25px/1 Arial, sans-serif;
}

.feature-card-accent .feature-icon {
    color: #07110f;
    border-color: rgba(7, 17, 15, .25);
}

.feature-card h3 {
    margin: 38px 0 14px;
    font-size: 21px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.feature-card-accent p {
    color: rgba(7, 17, 15, .68);
}

.feature-card ul {
    padding: 26px 0 0;
    margin: 70px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.feature-card li {
    padding: 11px 0;
    color: #b9cac1;
    font-size: 12px;
    border-bottom: 1px solid rgba(194, 239, 219, .08);
}

.feature-card li::before {
    content: "↳";
    margin-right: 10px;
    color: var(--green);
}

.card-tag {
    margin-top: 48px;
    display: inline-block;
    padding: 8px 11px;
    border: 1px solid rgba(7, 17, 15, .25);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.gallery-section {
    padding-top: 55px;
}

.image-gallery {
    display: grid;
    grid-template-columns: 1.55fr .8fr;
    gap: 16px;
}

.image-gallery figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.72) contrast(1.08);
    transition: transform .7s ease, filter .7s ease;
}

.image-gallery figure:hover img {
    transform: scale(1.025);
    filter: saturate(.95) contrast(1.08);
}

.gallery-side img {
    object-position: center;
}

.image-gallery figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 14, 11, .95), transparent 42%);
    pointer-events: none;
}

.image-gallery figcaption {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 26px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
}

.image-gallery figcaption span {
    grid-row: span 2;
    color: var(--green);
    font: 700 10px/1 Arial, sans-serif;
}

.image-gallery figcaption strong {
    font-size: 17px;
}

.image-gallery figcaption small {
    margin-top: 5px;
    color: #83988e;
    font-size: 10px;
}

.platforms {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.platform-intro {
    position: sticky;
    top: 40px;
}

.platform-intro > p {
    margin-top: 25px;
}

.platform-intro > a {
    margin-top: 30px;
    display: inline-block;
    color: var(--green);
    font-size: 12px;
    border-bottom: 1px solid rgba(55, 242, 155, .35);
    padding-bottom: 4px;
}

.platform-list {
    border-top: 1px solid var(--line);
}

.platform-list article {
    min-height: 138px;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.device-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--green);
    border: 1px solid rgba(55, 242, 155, .3);
    font: 700 16px/1 Arial, sans-serif;
}

.platform-list h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.platform-list p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.platform-list article > a {
    padding: 12px 15px;
    color: var(--green);
    font-size: 12px;
    border: 1px solid rgba(55, 242, 155, .32);
    transition: background .2s ease, color .2s ease;
}

.platform-list article > a:hover {
    color: var(--bg);
    background: var(--green);
}

.guide-section {
    border-top: 1px solid var(--line);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.article-grid article {
    min-height: 310px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .25s ease;
}

.article-grid article:hover {
    background: var(--panel);
}

.article-grid span {
    color: var(--green);
    font-size: 10px;
    letter-spacing: .07em;
}

.article-grid h3 {
    max-width: 430px;
    margin: 26px 0 14px;
    font-size: 20px;
    line-height: 1.5;
}

.article-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.article-grid a {
    margin-top: auto;
    color: #c5d5cd;
    font-size: 12px;
}

.article-grid a b {
    color: var(--green);
}

.service {
    width: min(calc(100% - 48px), 1320px);
    padding: 80px 70px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 90px;
    color: #07110f;
    background: var(--green);
}

.service .eyebrow,
.service .eyebrow span {
    color: #07110f;
}

.service .eyebrow span {
    background: #07110f;
    box-shadow: 9px 3px 0 rgba(7, 17, 15, .35);
}

.service-content > p {
    max-width: 540px;
    margin-top: 24px;
    color: rgba(7, 17, 15, .68);
}

.service-actions {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.button-light {
    color: var(--green);
    background: #07110f;
}

.service-link {
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid rgba(7, 17, 15, .4);
    padding-bottom: 4px;
}

.service-proof {
    padding: 32px;
    background: rgba(7, 17, 15, .09);
    border: 1px solid rgba(7, 17, 15, .18);
}

.service-proof > span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.service-proof ol {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

.service-proof li {
    padding: 17px 0;
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid rgba(7, 17, 15, .15);
}

.service-proof i {
    font: 700 10px/1 Arial, sans-serif;
    font-style: normal;
    opacity: .5;
}

.service-proof p,
.service-proof strong,
.service-proof small {
    display: block;
    margin: 0;
}

.service-proof strong {
    font-size: 13px;
}

.service-proof small {
    margin-top: 5px;
    color: rgba(7, 17, 15, .58);
    font-size: 10px;
}

.faq {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion details {
    border-bottom: 1px solid var(--line);
}

.accordion summary {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary span {
    color: var(--green);
    font-size: 22px;
    transition: transform .2s ease;
}

.accordion details[open] summary span {
    transform: rotate(45deg);
}

.accordion details p {
    max-width: 650px;
    margin: -5px 0 25px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.site-footer {
    width: min(calc(100% - 48px), var(--max));
    min-height: 260px;
    margin: 0 auto;
    padding: 55px 0 28px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
    align-items: start;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer-brand p,
.footer-brand strong,
.footer-brand small {
    display: block;
    margin: 0;
}

.footer-brand strong {
    font-size: 16px;
}

.footer-brand small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 10px;
}

.footer-links {
    display: flex;
    gap: 26px;
}

.footer-note {
    max-width: 600px;
    margin: 0;
    color: #697d73;
    font-size: 11px;
    line-height: 1.8;
}

.copyright {
    margin: 0;
    color: #566a60;
    text-align: right;
    font: 400 10px/1.6 Arial, sans-serif;
}

@media (max-width: 960px) {
    .site-header {
        gap: 20px;
    }

    .main-nav {
        gap: 16px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 80px 0 70px;
    }

    .hero-visual {
        width: 100%;
        height: 460px;
        margin: 0;
    }

    .signal-bar {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 18px;
        padding-bottom: 18px;
        gap: 15px 0;
    }

    .signal-bar p:nth-child(3) {
        border-left: 0;
    }

    .section-heading {
        grid-template-columns: 1fr 320px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-row: auto;
        min-height: 300px;
    }

    .feature-card ul {
        margin-top: 25px;
    }

    .platforms,
    .service {
        grid-template-columns: 1fr;
    }

    .platform-intro {
        position: static;
    }
}

@media (max-width: 720px) {
    .site-header {
        width: min(calc(100% - 32px), var(--max));
        min-height: 74px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        margin-left: auto;
        padding: 0;
        display: grid;
        place-content: center;
        gap: 7px;
        color: var(--text);
        background: transparent;
        border: 1px solid var(--line);
    }

    .menu-toggle span {
        width: 18px;
        height: 1px;
        display: block;
        background: currentColor;
    }

    .main-nav {
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        padding: 18px;
        display: none;
        flex-direction: column;
        gap: 0;
        background: #0b1714;
        border: 1px solid var(--line);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
        border-bottom: 1px solid var(--line);
    }

    .hero,
    .section,
    .site-footer {
        width: min(calc(100% - 32px), var(--max));
    }

    .hero {
        min-height: auto;
        padding: 65px 0 55px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .hero-copy {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        height: 340px;
    }

    .visual-card-top {
        display: none;
    }

    .visual-card-bottom {
        left: 16px;
        bottom: 16px;
    }

    .signal-bar {
        grid-template-columns: 1fr;
    }

    .signal-bar p,
    .signal-bar p:nth-child(3) {
        padding: 8px 0;
        border-left: 0;
        border-bottom: 1px solid rgba(7, 17, 15, .15);
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }

    .feature-grid,
    .image-gallery,
    .article-grid,
    .faq,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card-large {
        min-height: 285px;
        padding: 27px;
    }

    .image-gallery figure {
        min-height: 330px;
    }

    .gallery-main,
    .gallery-side {
        min-height: 330px;
    }

    .platforms {
        gap: 45px;
    }

    .platform-list article {
        grid-template-columns: 50px 1fr;
        gap: 17px;
    }

    .platform-list article > a {
        grid-column: 1 / -1;
        text-align: center;
    }

    .article-grid article {
        min-height: 300px;
        padding: 28px;
    }

    .service {
        width: 100%;
        padding: 68px 24px;
        gap: 50px;
    }

    .service-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-link {
        align-self: center;
    }

    .service-proof {
        padding: 24px;
    }

    .faq {
        gap: 40px;
    }

    .site-footer {
        gap: 30px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 25px;
    }

    .copyright {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

.inner-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -10%, rgba(55, 242, 155, .13), transparent 32rem),
        var(--bg);
}

.inner-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.inner-nav a {
    color: var(--muted);
    font-size: 12px;
}

.inner-nav a:last-child {
    padding: 10px 15px;
    color: var(--green);
    border: 1px solid rgba(55, 242, 155, .35);
}

.download-main,
.refund-main {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
}

.download-hero {
    min-height: 390px;
    padding: 75px 0 55px;
    display: grid;
    grid-template-columns: 1fr 360px;
    align-items: end;
    gap: 80px;
}

.download-hero h1,
.refund-heading h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.download-hero h1 em {
    color: var(--green);
    font-style: normal;
}

.download-hero > div:first-child > p:last-child {
    max-width: 580px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
}

.download-trust {
    padding: 28px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.download-trust span,
.card-label,
.download-refund span,
.form-title > span {
    color: var(--green);
    font: 700 9px/1.3 Arial, sans-serif;
    letter-spacing: .14em;
}

.download-trust strong {
    margin-top: 15px;
    display: block;
    font-size: 18px;
}

.download-trust p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.download-card {
    min-height: 520px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
}

.download-card.featured {
    border-color: rgba(55, 242, 155, .65);
    background:
        linear-gradient(180deg, rgba(55, 242, 155, .08), transparent 48%),
        var(--panel);
}

.recommended {
    position: absolute;
    right: 18px;
    top: 18px;
    padding: 7px 9px;
    color: var(--bg);
    background: var(--green);
    font-size: 9px;
    font-weight: 700;
}

.platform-code {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    display: grid;
    place-items: center;
    color: var(--green);
    border: 1px solid rgba(55, 242, 155, .35);
    font: 700 15px/1 Arial, sans-serif;
}

.download-card h2 {
    margin: 15px 0 0;
    font-size: 25px;
}

.card-copy {
    min-height: 68px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.download-card ul {
    margin: 28px 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.download-card li {
    padding: 8px 0;
    color: #aec0b7;
    font-size: 12px;
}

.download-card li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--green);
}

.purchase-button {
    width: 100%;
    margin-top: auto;
}

.quick-steps {
    padding: 100px 0;
}

.quick-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.quick-step-grid article {
    padding: 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.quick-step-grid i {
    color: var(--green);
    font: 700 10px/1 Arial, sans-serif;
    font-style: normal;
}

.quick-step-grid h3 {
    margin: 36px 0 9px;
    font-size: 17px;
}

.quick-step-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.download-refund {
    margin-bottom: 80px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: var(--bg);
    background: var(--green);
}

.download-refund span {
    color: var(--bg);
}

.download-refund h2 {
    margin: 13px 0 8px;
    font-size: 27px;
}

.download-refund p {
    margin: 0;
    color: rgba(7, 17, 15, .65);
    font-size: 12px;
}

.download-refund .button-light {
    width: auto;
    flex: 0 0 auto;
}

.simple-footer {
    width: min(calc(100% - 48px), var(--max));
    min-height: 100px;
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    color: #677a70;
    border-top: 1px solid var(--line);
    font-size: 10px;
}

.simple-footer p {
    margin: 0;
}

.refund-heading {
    padding: 70px 0 50px;
    border-bottom: 1px solid var(--line);
}

.refund-heading > p:last-child {
    max-width: 640px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.refund-heading strong {
    color: var(--green);
}

.refund-layout {
    padding: 55px 0 90px;
    display: grid;
    grid-template-columns: 1.15fr .75fr;
    gap: 18px;
    align-items: start;
}

.refund-form {
    padding: 44px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.form-title {
    margin-bottom: 36px;
}

.form-title h2 {
    margin: 12px 0 8px;
    font-size: 25px;
}

.form-title p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.refund-form > label {
    margin-top: 22px;
    display: block;
}

.refund-form > label > span:first-child {
    margin-bottom: 9px;
    display: block;
    color: #c3d2ca;
    font-size: 11px;
}

.refund-form input,
.refund-form select,
.refund-form textarea {
    width: 100%;
    padding: 14px 15px;
    color: var(--text);
    background: #0a1512;
    border: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    font: inherit;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.refund-form textarea {
    min-height: 125px;
    resize: vertical;
}

.refund-form input:focus,
.refund-form select:focus,
.refund-form textarea:focus {
    border-color: rgba(55, 242, 155, .6);
    box-shadow: 0 0 0 3px rgba(55, 242, 155, .07);
}

.refund-form input::placeholder,
.refund-form textarea::placeholder {
    color: #52665c;
}

.refund-form .form-consent {
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.refund-form .form-consent input {
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    accent-color: var(--green);
}

.refund-form .form-consent span {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.refund-submit {
    width: 100%;
}

.form-message {
    display: none;
    margin: 18px 0 0;
    padding: 14px;
    color: var(--green);
    background: rgba(55, 242, 155, .07);
    border: 1px solid rgba(55, 242, 155, .25);
    font-size: 11px;
    line-height: 1.65;
}

.form-message.is-visible {
    display: block;
}

.refund-aside {
    display: grid;
    gap: 18px;
}

.refund-promise,
.refund-process,
.refund-note {
    padding: 34px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.refund-promise {
    background:
        radial-gradient(circle at 80% 30%, rgba(55, 242, 155, .15), transparent 45%),
        var(--panel);
}

.refund-promise > span {
    color: var(--green);
    font: 800 58px/1 Arial, sans-serif;
    letter-spacing: -.06em;
}

.refund-promise h2 {
    margin: 18px 0 9px;
    font-size: 22px;
}

.refund-promise p,
.refund-note p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.refund-process h3,
.refund-note h3 {
    margin: 0 0 20px;
    font-size: 15px;
}

.refund-process ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.refund-process li {
    padding: 14px 0;
    display: flex;
    gap: 15px;
    border-top: 1px solid var(--line);
}

.refund-process i {
    color: var(--green);
    font: 700 9px/1.5 Arial, sans-serif;
    font-style: normal;
}

.refund-process p,
.refund-process strong,
.refund-process small {
    display: block;
    margin: 0;
}

.refund-process strong {
    font-size: 12px;
}

.refund-process small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
}

.refund-note a {
    margin-top: 18px;
    display: inline-block;
    color: var(--green);
    font-size: 11px;
}

html:not(.kzup) body {
            filter: blur(10px);
            -webkit-filter: blur(10px);
        }
        body {
            transition: filter 0.5s ease, opacity 0.5s ease;
        }

@media (max-width: 820px) {
    .download-hero,
    .refund-layout {
        grid-template-columns: 1fr;
    }

    .download-cards {
        grid-template-columns: 1fr;
    }

    .download-card {
        min-height: 480px;
    }

    .quick-step-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .inner-nav {
        gap: 10px;
    }

    .inner-nav a:first-child {
        display: none;
    }

    .download-main,
    .refund-main,
    .simple-footer {
        width: min(calc(100% - 32px), var(--max));
    }

    .download-hero {
        min-height: auto;
        padding: 55px 0 40px;
        gap: 35px;
    }

    .download-hero h1,
    .refund-heading h1 {
        font-size: 45px;
    }

    .download-card {
        min-height: 460px;
        padding: 28px;
    }

    .quick-steps {
        padding: 70px 0;
    }

    .download-refund {
        padding: 34px 25px;
        align-items: stretch;
        flex-direction: column;
        gap: 25px;
    }

    .download-refund .button-light {
        width: 100%;
    }

    .refund-heading {
        padding-top: 55px;
    }

    .refund-layout {
        padding-top: 35px;
    }

    .refund-form {
        padding: 28px 22px;
    }

    .simple-footer {
        flex-direction: column;
        gap: 8px;
    }
}
