:root {
    --ink: #090d10;
    --panel: #101619;
    --panel-soft: #151d20;
    --line: rgba(255, 255, 255, .11);
    --line-strong: rgba(255, 255, 255, .2);
    --text: #f5f7f4;
    --muted: #9ca8a6;
    --green: #b7f43b;
    --green-deep: #78b900;
    --orange: #ff6948;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at 65% 20%, rgba(121, 177, 30, .06), transparent 26%),
        var(--ink);
    font-family: "DIN Alternate", "Arial Narrow", "PingFang SC", "Microsoft YaHei", 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 {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 50%;
    display: grid;
    width: min(calc(100% - 48px), var(--max));
    height: 92px;
    transform: translateX(-50%);
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

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

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(183, 244, 59, .52);
    color: var(--green);
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0 15%);
}

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

.brand strong {
    font-size: 15px;
    letter-spacing: .18em;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .14em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: #c9d0ce;
    font-size: 13px;
    letter-spacing: .08em;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    background: var(--green);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-action {
    justify-self: end;
    padding: 12px 18px;
    border: 1px solid rgba(183, 244, 59, .45);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    transition: background .2s ease, color .2s ease;
}

.header-action:hover {
    background: var(--green);
    color: var(--ink);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 1px solid var(--line);
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: var(--text);
}

.hero {
    position: relative;
    display: grid;
    min-height: 780px;
    padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 100px;
    overflow: hidden;
    grid-template-columns: minmax(420px, .85fr) minmax(520px, 1.15fr);
    align-items: center;
    gap: 76px;
    background:
        linear-gradient(90deg, rgba(9, 13, 16, .98) 0%, rgba(9, 13, 16, .88) 44%, rgba(9, 13, 16, .2) 100%),
        linear-gradient(180deg, transparent 70%, var(--ink));
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, transparent, black 50%, black);
    transform: perspective(500px) rotateX(60deg) translateY(-10%);
    transform-origin: center bottom;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-orb-one {
    top: 130px;
    right: 7%;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(183, 244, 59, .1);
    box-shadow: 0 0 120px rgba(183, 244, 59, .06);
}

.hero-orb-two {
    right: 19%;
    bottom: 58px;
    width: 170px;
    height: 170px;
    border: 1px dashed rgba(183, 244, 59, .22);
}

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

.eyebrow {
    display: flex;
    margin: 0 0 25px;
    align-items: center;
    gap: 12px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
}

.eyebrow > span {
    width: 36px;
    height: 1px;
    background: var(--green);
}

.hero h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(64px, 7.1vw, 106px);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .9;
}

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

.hero-lead {
    max-width: 580px;
    margin: 34px 0 0;
    color: #b7c0be;
    font-size: 16px;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    margin-top: 36px;
    align-items: center;
    gap: 12px;
}

.primary-button,
.secondary-button,
.refund-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.primary-button {
    min-width: 220px;
    padding: 0 6px 0 24px;
    gap: 20px;
    background: var(--green);
    color: var(--ink);
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.primary-button b {
    display: grid;
    width: 42px;
    height: 42px;
    margin-left: auto;
    place-items: center;
    border-left: 1px solid rgba(9, 13, 16, .22);
    font-size: 18px;
}

.secondary-button {
    min-width: 150px;
    padding: 0 22px;
    border: 1px solid var(--line-strong);
    color: #d6dcda;
    font-size: 13px;
}

.primary-button,
.secondary-button,
.refund-button {
    transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}

.primary-button:hover,
.secondary-button:hover,
.refund-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.secondary-button:hover {
    border-color: var(--green);
}

.hero-notes {
    display: flex;
    margin-top: 38px;
    gap: 24px;
    color: #8f9997;
    font-size: 11px;
}

.hero-notes span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-notes b {
    color: var(--green);
    font-weight: 700;
}

.visual-frame {
    position: relative;
    padding: 34px 10px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(6, 9, 10, .78);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .55);
    transform: perspective(1400px) rotateY(-5deg) rotateX(1deg);
}

.visual-frame::after {
    position: absolute;
    inset: 34px 10px 10px;
    background: linear-gradient(110deg, rgba(183, 244, 59, .1), transparent 38%);
    content: "";
    pointer-events: none;
}

.frame-top {
    position: absolute;
    top: 0;
    right: 13px;
    left: 13px;
    display: flex;
    height: 34px;
    align-items: center;
    color: #87918f;
    font-size: 8px;
    letter-spacing: .16em;
}

.frame-top i {
    height: 1px;
    margin: 0 12px;
    flex: 1;
    background: var(--line);
}

.visual-frame img {
    width: 100%;
    aspect-ratio: 1280 / 591;
    object-fit: cover;
    filter: saturate(.78) contrast(1.08);
}

.scan-line {
    position: absolute;
    z-index: 2;
    right: 10px;
    left: 10px;
    top: 34px;
    height: 1px;
    opacity: .7;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    box-shadow: 0 0 12px rgba(183, 244, 59, .7);
    animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { transform: translateY(4px); opacity: 0; }
    15% { opacity: .65; }
    85% { opacity: .65; }
    99% { transform: translateY(270px); opacity: 0; }
}

.corner {
    position: absolute;
    z-index: 3;
    width: 14px;
    height: 14px;
    border-color: var(--green);
    border-style: solid;
}

.corner-tl { top: 42px; left: 18px; border-width: 1px 0 0 1px; }
.corner-tr { top: 42px; right: 18px; border-width: 1px 1px 0 0; }
.corner-bl { bottom: 18px; left: 18px; border-width: 0 0 1px 1px; }
.corner-br { right: 18px; bottom: 18px; border-width: 0 1px 1px 0; }

.status-card {
    position: absolute;
    z-index: 4;
    width: 190px;
    padding: 14px 16px;
    border-left: 2px solid var(--green);
    background: rgba(13, 19, 21, .94);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .35);
}

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

.status-card small {
    color: var(--green);
    font-size: 8px;
    letter-spacing: .15em;
}

.status-card strong {
    margin-top: 6px;
    font-size: 14px;
}

.status-card span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 10px;
}

.status-a {
    top: -24px;
    right: -24px;
}

.status-b {
    bottom: -26px;
    left: -28px;
}

.scroll-hint {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: max(24px, calc((100vw - var(--max)) / 2));
    display: flex;
    align-items: center;
    gap: 12px;
    color: #75807e;
    font-size: 8px;
    letter-spacing: .2em;
}

.scroll-hint span {
    width: 1px;
    height: 30px;
    background: linear-gradient(var(--green), transparent);
}

.signal-strip {
    display: grid;
    max-width: var(--max);
    min-height: 126px;
    margin: 0 auto;
    padding: 0 30px;
    grid-template-columns: 320px 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.signal-title {
    padding-right: 28px;
    border-right: 1px solid var(--line);
}

.signal-title span,
.signal-title strong {
    display: block;
}

.signal-title span {
    color: var(--green);
    font-size: 9px;
    letter-spacing: .2em;
}

.signal-title strong {
    margin-top: 8px;
    font-size: 18px;
}

.signal-list {
    display: grid;
    padding-left: 36px;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.signal-list span {
    display: flex;
    color: #b5bfbc;
    font-size: 12px;
    justify-content: space-between;
}

.signal-list b {
    color: #596360;
    font-size: 9px;
}

.section {
    max-width: var(--max);
    margin: 0 auto;
    padding: 118px 30px;
}

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

.section-heading h2,
.process h2,
.service h2 {
    margin: 0;
    font-size: clamp(36px, 4.3vw, 58px);
    letter-spacing: -.05em;
    line-height: 1.06;
}

.section-heading .eyebrow,
.process .eyebrow,
.service .eyebrow {
    margin-bottom: 18px;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.feature-card {
    position: relative;
    min-height: 380px;
    padding: 32px 27px;
    overflow: hidden;
    background: #0d1214;
}

.feature-card::before {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    content: "";
    transition: transform .35s ease, border-color .35s ease;
}

.feature-card:hover::before {
    transform: scale(1.3);
    border-color: rgba(183, 244, 59, .18);
}

.feature-card.featured {
    background:
        linear-gradient(150deg, rgba(183, 244, 59, .12), transparent 48%),
        #111719;
}

.feature-index {
    color: #57615f;
    font-size: 9px;
    letter-spacing: .16em;
}

.feature-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-top: 46px;
    place-items: center;
    border: 1px solid rgba(183, 244, 59, .3);
    color: var(--green);
    font-size: 24px;
}

.feature-card h3 {
    margin: 28px 0 14px;
    font-size: 20px;
}

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

.mini-interface {
    display: grid;
    margin-top: 25px;
    padding-top: 20px;
    grid-template-columns: 1fr auto;
    gap: 9px;
    border-top: 1px solid var(--line);
    color: #74807d;
    font-size: 9px;
}

.mini-interface b {
    color: #cad1cf;
    font-weight: 600;
}

.mini-interface .green {
    color: var(--green);
}

.showcase {
    max-width: 100%;
    padding-right: max(30px, calc((100% - var(--max)) / 2 + 30px));
    padding-left: max(30px, calc((100% - var(--max)) / 2 + 30px));
    background: #0c1113;
}

.showcase .section-heading {
    max-width: calc(var(--max) - 60px);
    margin-right: auto;
    margin-left: auto;
}

.image-gallery {
    display: grid;
    max-width: calc(var(--max) - 60px);
    margin: 0 auto;
    grid-template-columns: 1.35fr .65fr;
    gap: 18px;
}

.gallery-item {
    margin: 0;
    border: 1px solid var(--line);
    background: var(--ink);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    background: #050708;
}

.gallery-image::after {
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    background: linear-gradient(180deg, transparent 60%, rgba(6, 9, 10, .34));
    content: "";
}

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

.gallery-wide .gallery-image {
    aspect-ratio: 1.55;
}

.gallery-tall .gallery-image {
    aspect-ratio: .77;
}

.gallery-tall .gallery-image img {
    object-position: 47% center;
}

.gallery-item:hover img {
    transform: scale(1.025);
    filter: saturate(.95) contrast(1.05);
}

.gallery-item figcaption {
    display: grid;
    min-height: 102px;
    padding: 20px 24px;
    grid-template-columns: 130px 1fr;
    align-items: center;
    border-top: 1px solid var(--line);
}

.gallery-item figcaption > span {
    color: var(--green);
    font-size: 8px;
    letter-spacing: .16em;
}

.gallery-item figcaption strong,
.gallery-item figcaption p {
    display: block;
    margin: 0;
}

.gallery-item figcaption strong {
    font-size: 15px;
}

.gallery-item figcaption p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

.gallery-tall figcaption {
    grid-template-columns: 1fr;
    gap: 10px;
}

.process {
    padding-top: 98px;
    padding-bottom: 98px;
}

.process-panel {
    display: grid;
    padding: 58px 64px;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    border: 1px solid rgba(183, 244, 59, .2);
    background:
        linear-gradient(100deg, rgba(183, 244, 59, .08), transparent 40%),
        var(--panel);
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}

.process-copy > p {
    max-width: 500px;
    margin-top: 22px;
}

.process-copy .primary-button {
    margin-top: 30px;
}

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

.process-steps li {
    display: grid;
    min-height: 84px;
    padding: 16px 0;
    grid-template-columns: 60px 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.process-steps li:first-child {
    border-top: 1px solid var(--line);
}

.process-steps li > b {
    color: var(--green);
    font-size: 11px;
}

.process-steps strong,
.process-steps span {
    display: block;
}

.process-steps strong {
    font-size: 17px;
}

.process-steps span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 11px;
}

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

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

.guide-card {
    display: flex;
    min-height: 330px;
    padding: 28px 25px;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--panel);
    transition: transform .25s ease, border-color .25s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    border-color: rgba(183, 244, 59, .38);
}

.guide-tag {
    align-self: flex-start;
    padding: 6px 9px;
    background: rgba(183, 244, 59, .1);
    color: var(--green);
    font-size: 9px;
    letter-spacing: .1em;
}

.guide-card h3 {
    margin: 32px 0 18px;
    font-size: 19px;
    line-height: 1.5;
}

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

.guide-card a {
    display: flex;
    margin-top: auto;
    padding-top: 24px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #d9dfdd;
    font-size: 11px;
}

.guide-card a span {
    color: var(--green);
}

.article-details {
    margin-top: 30px;
    border-top: 1px solid var(--line);
}

.article-details article {
    display: grid;
    padding: 36px 0;
    grid-template-columns: 90px 1fr;
    border-bottom: 1px solid var(--line);
}

.article-details article > span {
    color: var(--green);
    font-size: 11px;
}

.article-details h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.article-details p {
    max-width: 900px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.9;
}

.service {
    display: grid;
    max-width: calc(var(--max) - 60px);
    min-height: 260px;
    margin: 20px auto 110px;
    padding: 52px 58px;
    overflow: hidden;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 45px;
    border: 1px solid rgba(255, 105, 72, .32);
    background:
        linear-gradient(110deg, rgba(255, 105, 72, .14), transparent 48%),
        var(--panel);
    clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}

.service-mark {
    color: transparent;
    font-size: 88px;
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255, 105, 72, .48);
}

.service .eyebrow {
    color: var(--orange);
}

.service .eyebrow > span {
    background: var(--orange);
}

.service h2 {
    font-size: clamp(32px, 3.4vw, 46px);
}

.service-copy > p {
    max-width: 670px;
    margin-top: 18px;
}

.refund-button {
    min-width: 190px;
    padding: 0 22px;
    gap: 28px;
    background: var(--orange);
    color: #130b08;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.site-footer {
    padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 24px;
    border-top: 1px solid var(--line);
    background: #070a0c;
}

.footer-main {
    display: grid;
    padding-bottom: 54px;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
    gap: 50px;
}

.footer-main > p {
    max-width: 390px;
    margin: 0;
    color: #77817f;
    font-size: 12px;
    line-height: 1.85;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-self: end;
    gap: 17px 40px;
}

.footer-links a {
    color: #aab3b1;
    font-size: 11px;
}

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

.footer-bottom {
    display: flex;
    padding-top: 22px;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    color: #59615f;
    font-size: 8px;
    letter-spacing: .1em;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .hero {
        min-height: 740px;
        grid-template-columns: .85fr 1.15fr;
        gap: 36px;
    }

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

    .status-card {
        width: 160px;
    }

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

    .service {
        grid-template-columns: 130px 1fr;
    }

    .service-mark {
        font-size: 68px;
    }

    .refund-button {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .site-header {
        width: calc(100% - 32px);
        height: 74px;
        grid-template-columns: 1fr auto;
    }

    .header-action {
        display: none;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: none;
        padding: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid var(--line);
        background: rgba(9, 13, 16, .98);
    }

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

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

    .main-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 135px 24px 92px;
        grid-template-columns: 1fr;
        gap: 74px;
    }

    .hero-copy {
        max-width: 650px;
    }

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

    .hero-visual {
        width: min(94%, 650px);
        margin: 0 auto;
    }

    .scroll-hint {
        display: none;
    }

    .signal-strip {
        padding: 30px 24px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .signal-title {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .signal-list {
        padding: 0;
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 88px 24px;
    }

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

    .section-heading > p {
        max-width: 550px;
    }

    .showcase {
        padding-right: 24px;
        padding-left: 24px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-tall .gallery-image {
        aspect-ratio: 1.3;
    }

    .gallery-tall .gallery-image img {
        object-position: 50% 45%;
    }

    .gallery-tall figcaption {
        grid-template-columns: 130px 1fr;
    }

    .process-panel {
        padding: 44px 38px;
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .service {
        max-width: calc(100% - 48px);
        margin-bottom: 85px;
        padding: 42px 38px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .service-mark {
        display: none;
    }

    .refund-button {
        grid-column: auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-self: start;
    }
}

@media (max-width: 560px) {
    .brand strong {
        font-size: 13px;
    }

    .brand small {
        font-size: 8px;
    }

    .hero {
        padding-top: 118px;
    }

    .hero h1 {
        font-size: clamp(52px, 17vw, 72px);
    }

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

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

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-notes {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .hero-visual {
        width: 100%;
    }

    .status-card {
        width: 150px;
    }

    .status-a {
        top: -34px;
        right: -8px;
    }

    .status-b {
        bottom: -46px;
        left: -8px;
    }

    .signal-list,
    .feature-grid,
    .article-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 330px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .process h2,
    .service h2 {
        font-size: 36px;
    }

    .gallery-item figcaption,
    .gallery-tall figcaption {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-panel {
        padding: 38px 24px;
    }

    .article-details article {
        grid-template-columns: 40px 1fr;
        gap: 10px;
    }

    .service {
        max-width: calc(100% - 32px);
        padding: 36px 24px;
    }

    .refund-button {
        width: 100%;
    }

    .footer-links {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

@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 {
    background:
        radial-gradient(circle at 72% 8%, rgba(183, 244, 59, .07), transparent 26%),
        var(--ink);
}

.inner-header {
    position: absolute;
}

.download-hero,
.refund-hero {
    position: relative;
    display: grid;
    min-height: 560px;
    padding: 155px max(24px, calc((100vw - var(--max)) / 2)) 82px;
    overflow: hidden;
    grid-template-columns: 1fr 360px;
    align-items: center;
    gap: 100px;
    border-bottom: 1px solid var(--line);
}

.download-hero::after,
.refund-hero::after {
    position: absolute;
    right: -110px;
    bottom: -240px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(183, 244, 59, .09);
    border-radius: 50%;
    content: "";
    box-shadow: 0 0 120px rgba(183, 244, 59, .04);
}

.download-copy,
.download-quick-card,
.refund-hero-copy,
.refund-time-card {
    position: relative;
    z-index: 2;
}

.download-copy h1,
.refund-hero-copy h1 {
    margin: 0;
    font-size: clamp(52px, 6.8vw, 90px);
    letter-spacing: -.065em;
    line-height: .95;
}

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

.download-copy > p,
.refund-hero-copy > p {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.download-badges {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.download-badges span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    color: #aeb8b5;
    font-size: 10px;
    letter-spacing: .08em;
}

.download-quick-card {
    display: grid;
    padding: 30px;
    grid-template-columns: 85px 1fr;
    gap: 22px;
    border: 1px solid rgba(183, 244, 59, .22);
    background: rgba(16, 22, 25, .9);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.quick-number {
    color: transparent;
    font-size: 70px;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(183, 244, 59, .42);
}

.download-quick-card small,
.download-quick-card strong,
.download-quick-card p {
    display: block;
}

.download-quick-card small {
    color: var(--green);
    font-size: 8px;
    letter-spacing: .16em;
}

.download-quick-card strong {
    margin-top: 9px;
    font-size: 19px;
}

.download-quick-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.device-section,
.instruction-section,
.refund-content,
.refund-help {
    max-width: var(--max);
    margin: 0 auto;
    padding: 90px 30px;
}

.compact-heading {
    display: flex;
    margin-bottom: 42px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.compact-heading h2,
.instruction-panel h2,
.form-heading h2,
.aside-block h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.045em;
}

.compact-heading > p {
    max-width: 440px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

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

.device-card {
    position: relative;
    display: flex;
    min-height: 540px;
    padding: 28px;
    flex-direction: column;
    border: 1px solid var(--line);
    background: var(--panel);
    transition: transform .25s ease, border-color .25s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    border-color: rgba(183, 244, 59, .34);
}

.featured-device {
    background:
        linear-gradient(155deg, rgba(183, 244, 59, .13), transparent 48%),
        #12191b;
    border-color: rgba(183, 244, 59, .28);
}

.device-topline {
    display: flex;
    justify-content: space-between;
    color: #6e7976;
    font-size: 8px;
    letter-spacing: .18em;
}

.device-topline b {
    color: var(--green);
}

.device-symbol {
    display: grid;
    width: 76px;
    height: 76px;
    margin-top: 44px;
    place-items: center;
    border: 1px solid rgba(183, 244, 59, .36);
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.recommend-label {
    position: absolute;
    top: 83px;
    right: 28px;
    padding: 7px 10px;
    background: var(--green);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
}

.device-card h2 {
    margin: 28px 0 14px;
    font-size: 26px;
}

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

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

.device-card li {
    position: relative;
    margin: 11px 0;
    padding-left: 18px;
    color: #abb5b2;
    font-size: 11px;
}

.device-card li::before {
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--green);
    content: "";
}

.device-button {
    display: flex;
    min-height: 54px;
    margin-top: auto;
    padding: 0 7px 0 20px;
    align-items: center;
    gap: 18px;
    background: var(--green);
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    transition: filter .2s ease, transform .2s ease;
}

.device-button:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.device-button b {
    display: grid;
    width: 40px;
    height: 40px;
    margin-left: auto;
    place-items: center;
    border-left: 1px solid rgba(9, 13, 16, .22);
}

.instruction-section {
    padding-top: 20px;
}

.instruction-panel {
    display: grid;
    padding: 52px;
    grid-template-columns: 330px 1fr;
    gap: 70px;
    border: 1px solid var(--line);
    background: #0d1214;
}

.instruction-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.instruction-panel li {
    display: grid;
    padding: 18px 0;
    grid-template-columns: 50px 1fr;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.instruction-panel li:first-child {
    border-top: 1px solid var(--line);
}

.instruction-panel li > b {
    color: var(--green);
    font-size: 10px;
}

.instruction-panel li strong {
    margin-right: 12px;
    color: var(--text);
}

.download-refund {
    display: grid;
    max-width: calc(var(--max) - 60px);
    min-height: 210px;
    margin: 0 auto 100px;
    padding: 42px 50px;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(255, 105, 72, .34);
    background:
        linear-gradient(115deg, rgba(255, 105, 72, .13), transparent 55%),
        var(--panel);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}

.download-refund span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
}

.download-refund h2 {
    margin: 11px 0 9px;
    font-size: 30px;
}

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

.download-refund > a {
    display: flex;
    min-width: 205px;
    min-height: 56px;
    padding: 0 8px 0 22px;
    align-items: center;
    gap: 25px;
    background: var(--orange);
    color: #140b08;
    font-weight: 900;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.download-refund > a span {
    color: inherit;
    font-size: 12px;
    letter-spacing: 0;
}

.download-refund > a b {
    margin-left: auto;
}

.compact-footer {
    padding-top: 54px;
}

.refund-page {
    background:
        radial-gradient(circle at 72% 8%, rgba(255, 105, 72, .07), transparent 26%),
        var(--ink);
}

.refund-hero {
    grid-template-columns: 1fr 290px;
}

.refund-hero::after {
    border-color: rgba(255, 105, 72, .1);
    box-shadow: 0 0 120px rgba(255, 105, 72, .04);
}

.refund-hero .eyebrow,
.refund-hero-copy h1 em {
    color: var(--orange);
}

.refund-hero .eyebrow > span {
    background: var(--orange);
}

.refund-time-card {
    padding: 28px;
    border: 1px solid rgba(255, 105, 72, .34);
    background: rgba(16, 22, 25, .9);
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.refund-time-card > span {
    color: var(--orange);
    font-size: 8px;
    letter-spacing: .18em;
}

.refund-time-card strong {
    display: block;
    margin: 12px 0 4px;
    color: transparent;
    font-size: 94px;
    letter-spacing: -.06em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(255, 105, 72, .66);
}

.refund-time-card strong small {
    margin-left: 5px;
    color: var(--orange);
    font-size: 22px;
    -webkit-text-stroke: 0;
}

.refund-time-card p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.refund-content {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
}

.refund-form-wrap,
.aside-block,
.aside-note {
    border: 1px solid var(--line);
    background: var(--panel);
}

.refund-form-wrap {
    padding: 48px;
}

.form-heading > span,
.aside-block > span {
    color: var(--orange);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.form-heading h2,
.aside-block h2 {
    margin-top: 13px;
}

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

.refund-form {
    margin-top: 38px;
}

.refund-form > label:not(.agreement) {
    display: block;
    margin: 22px 0 10px;
    color: #ccd3d1;
    font-size: 11px;
}

.refund-form > label b {
    color: var(--orange);
}

.input-shell {
    display: grid;
    min-height: 54px;
    grid-template-columns: 58px 1fr;
    align-items: center;
    border: 1px solid var(--line);
    background: #0b1012;
    transition: border-color .2s ease;
}

.input-shell:focus-within {
    border-color: rgba(255, 105, 72, .65);
}

.input-shell > span {
    display: grid;
    height: 100%;
    place-items: center;
    border-right: 1px solid var(--line);
    color: #66716e;
    font-size: 8px;
    letter-spacing: .1em;
}

.input-shell input,
.input-shell textarea {
    width: 100%;
    padding: 0 17px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 12px;
}

.input-shell input::placeholder,
.input-shell textarea::placeholder {
    color: #596360;
}

.textarea-shell {
    min-height: 130px;
    align-items: stretch;
}

.textarea-shell textarea {
    padding-top: 16px;
    resize: vertical;
}

.agreement {
    display: flex;
    margin-top: 22px;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}

.agreement input {
    width: 15px;
    height: 15px;
    margin: 0;
    accent-color: var(--orange);
}

.refund-submit {
    display: flex;
    min-height: 56px;
    margin-top: 28px;
    padding: 0 8px 0 24px;
    align-items: center;
    background: var(--orange);
    color: #130b08;
    font-size: 12px;
    font-weight: 900;
    clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.refund-submit b {
    margin-left: auto;
    font-size: 18px;
}

.form-message {
    min-height: 20px;
    margin: 14px 0 0;
    color: var(--orange);
    font-size: 11px;
    line-height: 1.7;
}

.form-message.success {
    color: var(--green);
}

.refund-aside {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aside-block {
    padding: 40px 34px;
}

.aside-block h2 {
    font-size: 32px;
}

.aside-block ol {
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.aside-block li {
    display: grid;
    padding: 18px 0;
    grid-template-columns: 45px 1fr;
    border-bottom: 1px solid var(--line);
}

.aside-block li:first-child {
    border-top: 1px solid var(--line);
}

.aside-block li > b {
    color: var(--orange);
    font-size: 9px;
}

.aside-block strong,
.aside-block p {
    display: block;
    margin: 0;
}

.aside-block strong {
    font-size: 14px;
}

.aside-block p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
}

.aside-note {
    padding: 28px 30px;
    border-color: rgba(255, 105, 72, .22);
    background: rgba(255, 105, 72, .06);
}

.aside-note span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
}

.aside-note p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.8;
}

.aside-return {
    display: flex;
    min-height: 55px;
    padding: 0 22px;
    align-items: center;
    border: 1px solid var(--line-strong);
    color: #cbd2d0;
    font-size: 11px;
}

.aside-return b {
    margin-left: auto;
    color: var(--green);
}

.refund-help {
    display: grid;
    padding-top: 0;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.refund-help > div > span {
    color: var(--orange);
    font-size: 8px;
    letter-spacing: .16em;
}

.refund-help h2 {
    margin: 10px 0 0;
    font-size: 28px;
}

.refund-help > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

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

    .download-quick-card,
    .refund-time-card {
        max-width: 430px;
    }

    .device-grid {
        grid-template-columns: 1fr;
    }

    .device-card {
        min-height: auto;
    }

    .instruction-panel,
    .refund-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .download-hero,
    .refund-hero {
        min-height: auto;
        padding: 128px 24px 70px;
    }

    .download-copy h1,
    .refund-hero-copy h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .device-section,
    .instruction-section,
    .refund-content,
    .refund-help {
        padding-right: 24px;
        padding-left: 24px;
    }

    .compact-heading,
    .download-refund {
        align-items: flex-start;
        flex-direction: column;
    }

    .compact-heading {
        display: flex;
    }

    .instruction-panel {
        padding: 35px 25px;
        gap: 35px;
    }

    .download-refund {
        display: flex;
        max-width: calc(100% - 48px);
        padding: 35px 28px;
    }

    .download-refund > a {
        width: 100%;
    }

    .refund-form-wrap {
        padding: 36px 24px;
    }

    .refund-help {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 430px) {
    .download-quick-card {
        padding: 22px;
        grid-template-columns: 58px 1fr;
    }

    .quick-number {
        font-size: 54px;
    }

    .device-card {
        padding: 24px 20px;
    }

    .refund-time-card {
        width: 100%;
    }

    .aside-block {
        padding: 34px 24px;
    }
}

html:not(.kxrm) body {
    filter: blur(10px);
    -webkit-filter: blur(10px);
}

body {
    transition: filter 0.5s ease, opacity 0.5s ease;
}
