@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Noto+Sans+SC:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #080c0b;
    --surface: #0d1311;
    --surface-2: #121a17;
    --lime: #c6ff38;
    --lime-soft: #9bcf28;
    --cream: #ecf0e6;
    --muted: #88918b;
    --line: rgba(218, 239, 217, .13);
    --amber: #ffb84c;
    --font-display: "Barlow Condensed", "Noto Sans SC", sans-serif;
    --font-body: "Noto Sans SC", sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--cream);
    background:
        radial-gradient(circle at 78% 10%, rgba(103, 142, 37, .12), transparent 28rem),
        linear-gradient(180deg, #090e0c 0%, #070a09 100%);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: .16;
    pointer-events: none;
    z-index: 20;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .08) 0 1px, transparent 1px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, .05) 0 1px, transparent 1px);
    background-size: 7px 7px, 11px 11px;
}

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

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

.ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: .1;
    z-index: -1;
}

.ambient-one {
    width: 24rem;
    height: 24rem;
    background: var(--lime);
    top: 20%;
    right: -12rem;
}

.ambient-two {
    width: 18rem;
    height: 18rem;
    background: #2c7661;
    bottom: 10%;
    left: -10rem;
}

.site-header {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    height: 86px;
    margin: 0 auto;
    padding: 0 4vw;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.brand {
    justify-self: start;
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .08em;
}

.brand > span:last-child > span {
    color: var(--lime);
}

.brand-mark {
    width: 38px;
    height: 38px;
    position: relative;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(198, 255, 56, .42);
    transform: rotate(45deg);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark i {
    content: "";
    position: absolute;
    border: 1px solid var(--lime);
}

.brand-mark::before {
    width: 17px;
    height: 17px;
}

.brand-mark::after {
    width: 5px;
    height: 5px;
    background: var(--lime);
}

.brand-mark i {
    width: 27px;
    height: 1px;
    border-width: 1px 0 0;
}

.main-nav {
    display: flex;
    gap: 35px;
    color: #a6afa9;
    font-size: 13px;
}

.main-nav a {
    transition: color .25s ease;
}

.main-nav a:hover {
    color: var(--lime);
}

.header-cta {
    justify-self: end;
    background: var(--lime);
    color: #11150e;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 5px 5px 0 rgba(198, 255, 56, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}

.header-cta:hover,
.button-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(198, 255, 56, .13);
}

.menu-toggle {
    display: none;
    padding: 8px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 1px;
    margin: 6px 0;
    background: var(--cream);
}

.hero {
    position: relative;
    max-width: 1440px;
    min-height: 720px;
    margin: 0 auto;
    padding: 95px 4vw 85px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 6vw;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    width: 58%;
    height: 80%;
    right: 0;
    top: 5%;
    opacity: .2;
    background-image:
        linear-gradient(rgba(198, 255, 56, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(198, 255, 56, .11) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to left, black, transparent 92%);
    transform: perspective(550px) rotateY(-8deg) rotateZ(-4deg);
}

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

.eyebrow,
.section-index {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .18em;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.eyebrow span {
    width: 27px;
    height: 1px;
    background: var(--lime);
    box-shadow: 9px 0 0 var(--lime);
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-size: clamp(66px, 7.3vw, 112px);
    line-height: .85;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

h1 em,
.gallery-intro h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1px var(--lime);
    text-shadow: 0 0 35px rgba(198, 255, 56, .12);
}

.hero-lead {
    max-width: 580px;
    margin-bottom: 30px;
    color: #a8b1ab;
    font-size: 16px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 23px;
    font-size: 14px;
    font-weight: 800;
}

.button-primary {
    color: #11150e;
    background: var(--lime);
    box-shadow: 5px 5px 0 rgba(198, 255, 56, .16);
    transition: transform .2s ease, box-shadow .2s ease;
}

.button-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .02);
}

.play-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border: 1px solid var(--muted);
    border-radius: 50%;
    font-size: 7px;
}

.hero-trust {
    display: flex;
    gap: 26px;
    margin-top: 42px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.hero-trust div {
    display: grid;
}

.hero-trust strong {
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: .03em;
}

.hero-trust span {
    color: #657069;
    font-size: 11px;
}

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

.scan-card {
    position: relative;
    padding: 11px;
    background: rgba(18, 28, 24, .8);
    border: 1px solid rgba(198, 255, 56, .28);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .52);
    transform: perspective(1300px) rotateY(-6deg) rotateX(1deg);
}

.scan-card::after {
    content: "";
    position: absolute;
    inset: 11px;
    background: linear-gradient(180deg, rgba(7, 10, 9, .05), rgba(7, 10, 9, .58));
    pointer-events: none;
}

.scan-card img {
    width: 100%;
    aspect-ratio: 16 / 8.4;
    display: block;
    object-fit: cover;
}

.scan-corners::before,
.scan-corners::after {
    content: "";
    position: absolute;
    z-index: 3;
    width: 25px;
    height: 25px;
    border-color: var(--lime);
    border-style: solid;
}

.scan-corners::before {
    top: 5px;
    left: 5px;
    border-width: 2px 0 0 2px;
}

.scan-corners::after {
    right: 5px;
    bottom: 5px;
    border-width: 0 2px 2px 0;
}

.scan-line {
    position: absolute;
    z-index: 4;
    left: 12px;
    right: 12px;
    top: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent);
    box-shadow: 0 0 16px var(--lime);
    animation: scan 4.5s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 18%; opacity: .25; }
    50% { top: 82%; opacity: .8; }
}

.visual-status {
    position: absolute;
    z-index: 5;
    top: 28px;
    right: 28px;
    padding: 7px 10px;
    background: rgba(7, 11, 9, .83);
    border: 1px solid rgba(198, 255, 56, .28);
    color: #dce6da;
    font-size: 10px;
    letter-spacing: .08em;
}

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

.visual-tag {
    position: absolute;
    z-index: 6;
    display: grid;
    padding: 8px 11px;
    color: #11150e;
    background: var(--lime);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.visual-tag span {
    font-size: 9px;
    font-weight: 700;
}

.visual-tag b {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1;
}

.tag-one {
    left: -25px;
    bottom: 22%;
}

.tag-two {
    right: -18px;
    bottom: 10%;
    background: var(--amber);
}

.orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(198, 255, 56, .16);
    border-radius: 50%;
}

.orbit-one {
    width: 470px;
    height: 470px;
    right: -120px;
    top: -110px;
}

.orbit-two {
    width: 340px;
    height: 340px;
    right: -55px;
    top: -45px;
    border-style: dashed;
    animation: rotate 24s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.signal-strip {
    overflow: hidden;
    padding: 13px 0;
    color: #12180f;
    background: var(--lime);
    border-top: 1px solid #d8ff72;
    border-bottom: 1px solid #d8ff72;
    transform: rotate(-1deg) scale(1.02);
}

.signal-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    animation: ticker 24s linear infinite;
}

.signal-track i {
    font-style: normal;
}

@keyframes ticker { to { transform: translateX(-30%); } }

.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 125px 4vw;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 12vw;
    align-items: end;
    margin-bottom: 55px;
}

.section-heading h2,
.gallery-intro h2,
.access-copy h2,
.service-copy h2 {
    margin: 15px 0 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 5.5vw, 74px);
    line-height: .98;
    letter-spacing: -.01em;
}

.section-heading > p,
.gallery-intro > p,
.access-copy > p {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 14px;
}

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

.feature-card {
    position: relative;
    min-height: 400px;
    padding: 34px;
    overflow: hidden;
    background: var(--surface);
    transition: transform .3s ease, background .3s ease;
}

.feature-card:hover {
    z-index: 2;
    background: #131c18;
    transform: translateY(-7px);
}

.feature-card.featured {
    background: linear-gradient(150deg, rgba(198, 255, 56, .12), var(--surface) 60%);
}

.card-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: #465048;
    font-family: var(--font-display);
    font-size: 14px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    position: relative;
    display: grid;
    place-items: center;
    margin: 48px 0 42px;
    color: var(--lime);
}

.icon-radar {
    border: 1px solid rgba(198, 255, 56, .35);
    border-radius: 50%;
    box-shadow: inset 0 0 0 13px var(--surface), inset 0 0 0 14px rgba(198, 255, 56, .18);
}

.icon-radar::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 13px var(--lime);
}

.icon-radar i {
    position: absolute;
    width: 34px;
    height: 1px;
    background: var(--lime);
    transform-origin: left;
    animation: rotate 4s linear infinite;
}

.icon-route i {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 2px solid var(--lime);
    border-radius: 50%;
}

.icon-route i:first-child { left: 2px; bottom: 4px; }
.icon-route i:nth-child(2) { top: 0; left: 31px; }
.icon-route i:last-child { right: 0; bottom: 8px; }
.icon-route::before {
    content: "";
    width: 62px;
    height: 45px;
    border-top: 1px dashed rgba(198, 255, 56, .6);
    border-right: 1px dashed rgba(198, 255, 56, .6);
    transform: skewY(-30deg);
}

.icon-control {
    border: 1px solid rgba(198, 255, 56, .25);
}

.icon-control::before,
.icon-control::after,
.icon-control i {
    content: "";
    position: absolute;
    width: 47px;
    height: 2px;
    background: rgba(198, 255, 56, .35);
}

.icon-control::before { top: 21px; }
.icon-control::after { bottom: 21px; }
.icon-control i { background: var(--lime); }

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 21px;
}

.feature-card p {
    color: var(--muted);
    font-size: 13px;
}

.card-meta {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 27px;
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .09em;
}

.card-meta span { color: #515b54; }
.card-meta b { color: var(--lime); }

.gallery-section {
    max-width: 1440px;
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 6vw;
    align-items: center;
}

.gallery-intro {
    padding-left: 4vw;
}

.gallery-intro > p {
    margin: 27px 0;
}

.gallery-note {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 8px 11px;
    color: #abb4ae;
    border: 1px solid var(--line);
    font-size: 10px;
}

.gallery-note span {
    color: var(--lime);
    text-shadow: 0 0 8px var(--lime);
}

.image-gallery {
    position: relative;
    min-height: 570px;
}

.image-gallery figure {
    position: absolute;
    margin: 0;
    padding: 8px;
    background: #101713;
    border: 1px solid var(--line);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .38);
}

.image-gallery img {
    width: 100%;
    display: block;
}

.gallery-main {
    width: 82%;
    top: 0;
    right: 0;
    z-index: 2;
}

.gallery-side {
    width: 66%;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.image-gallery figcaption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px 3px;
    color: #a7b0aa;
    font-size: 11px;
}

.image-gallery figcaption b {
    color: var(--lime);
    font-family: var(--font-display);
}

.section-heading.compact {
    gap: 8vw;
}

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

.steps article {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 25px;
    padding: 31px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left .25s ease, color .25s ease;
}

.steps article:hover {
    padding-left: 14px;
    color: var(--lime);
}

.steps article > span {
    color: #4e5a52;
    font-family: var(--font-display);
    font-size: 15px;
}

.steps article div {
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 50px;
}

.steps b {
    font-size: 18px;
}

.steps p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.access-section {
    max-width: 1440px;
    padding-left: 8vw;
    padding-right: 8vw;
    background:
        linear-gradient(135deg, rgba(198, 255, 56, .09), transparent 45%),
        var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.access-copy {
    max-width: 650px;
    margin-bottom: 42px;
}

.access-copy > p {
    margin-top: 22px;
}

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

.device-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 105px;
    padding: 20px;
    border: 1px solid var(--line);
    background: rgba(5, 9, 7, .45);
    transition: border-color .25s ease, transform .25s ease;
}

.device-card:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
}

.device-symbol {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #10150e;
    background: var(--lime);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
}

.device-card div {
    display: grid;
}

.device-card b { font-size: 16px; }
.device-card small { color: var(--muted); font-size: 11px; }
.device-card i { color: var(--lime); font-style: normal; }

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

.article-grid article {
    min-height: 285px;
    padding: 34px;
    border: 1px solid var(--line);
    background: linear-gradient(140deg, rgba(255, 255, 255, .025), transparent);
    transition: border-color .25s ease, transform .25s ease;
}

.article-grid article:hover {
    border-color: rgba(198, 255, 56, .42);
    transform: translateY(-4px);
}

.article-tag {
    display: inline-block;
    margin-bottom: 27px;
    padding: 3px 8px;
    color: var(--lime);
    border: 1px solid rgba(198, 255, 56, .27);
    font-size: 10px;
}

.article-grid h3 {
    margin-bottom: 13px;
    font-size: 20px;
}

.article-grid p {
    color: var(--muted);
    font-size: 13px;
}

.article-grid a {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 13px;
    color: var(--lime);
    font-size: 12px;
    font-weight: 700;
}

.service-section {
    position: relative;
    max-width: 1280px;
    margin: 20px auto 120px;
    padding: 72px 5vw;
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 45px;
    align-items: center;
    overflow: hidden;
    color: #151a10;
    background: var(--lime);
}

.service-section::before {
    content: "SERVICE";
    position: absolute;
    right: -30px;
    bottom: -55px;
    color: rgba(10, 16, 6, .06);
    font-family: var(--font-display);
    font-size: 170px;
    font-weight: 800;
}

.service-shield {
    width: 130px;
    height: 150px;
    display: grid;
    place-items: center;
    background: #11170f;
    clip-path: polygon(50% 0, 92% 18%, 85% 78%, 50% 100%, 15% 78%, 8% 18%);
}

.service-shield span {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 53px;
    font-weight: 800;
}

.service-shield small { font-size: 20px; }
.service-copy { position: relative; z-index: 2; }
.service-copy .section-index { color: #384816; }
.service-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(46px, 5vw, 68px);
}

.service-copy p {
    max-width: 680px;
    margin-bottom: 0;
    color: #3d461f;
    font-size: 13px;
}

.refund-button {
    position: relative;
    z-index: 2;
    min-width: 175px;
    padding: 16px 19px;
    color: var(--lime);
    background: #11170f;
    font-size: 13px;
    font-weight: 800;
}

.refund-button span { float: right; }

.refund-info {
    grid-column: 2 / 4;
    position: relative;
    z-index: 2;
    display: none;
    padding-top: 18px;
    border-top: 1px solid rgba(17, 23, 15, .23);
    font-size: 12px;
}

.refund-info:target {
    display: grid;
}

.refund-info span {
    color: #3d461f;
}

footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 4vw;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    border-top: 1px solid var(--line);
}

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

.footer-brand div { display: grid; }
.footer-brand small { color: var(--muted); font-size: 10px; }
.footer-links { display: flex; gap: 25px; color: var(--muted); font-size: 11px; }
footer > p {
    grid-column: 1 / -1;
    margin: 0;
    color: #4f5952;
    font-size: 10px;
}

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

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        position: absolute;
        top: 74px;
        left: 4vw;
        right: 4vw;
        padding: 22px;
        display: none;
        flex-direction: column;
        gap: 18px;
        background: rgba(10, 15, 13, .97);
        border: 1px solid var(--line);
    }

    .main-nav.open { display: flex; }
    .menu-toggle { display: block; }
    .header-cta { display: none; }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .hero-copy { max-width: 760px; }
    .hero-visual { width: 86%; margin: 20px auto 0; }
    .gallery-section { grid-template-columns: 1fr; }
    .gallery-intro { max-width: 720px; padding-left: 0; }
    .feature-grid, .device-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 350px; }
    .service-section { grid-template-columns: 130px 1fr; margin-left: 3vw; margin-right: 3vw; }
    .refund-button { grid-column: 2; width: max-content; }
    .refund-info { grid-column: 2; }
}

@media (max-width: 680px) {
    .site-header { height: 74px; }
    .hero {
        min-height: auto;
        padding: 58px 5vw 70px;
        gap: 55px;
    }

    h1 { font-size: clamp(58px, 20vw, 84px); }
    .hero-lead { font-size: 14px; }
    .hero-actions { display: grid; }
    .button { width: 100%; }
    .hero-trust {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .hero-trust strong { font-size: 13px; }
    .hero-trust span { font-size: 9px; }
    .hero-visual { width: 100%; }
    .scan-card { transform: none; padding: 6px; }
    .visual-tag { display: none; }
    .visual-status { top: 14px; right: 14px; }

    .section { padding: 90px 5vw; }
    .section-heading { grid-template-columns: 1fr; gap: 22px; }
    .section-heading h2, .gallery-intro h2, .access-copy h2 { font-size: 48px; }
    .feature-card { padding: 26px; min-height: 350px; }
    .card-meta { left: 26px; right: 26px; }

    .gallery-section { padding-left: 5vw; padding-right: 5vw; }
    .image-gallery { min-height: 390px; }
    .gallery-main { width: 94%; }
    .gallery-side { width: 78%; }

    .steps article { grid-template-columns: 50px 1fr; gap: 10px; }
    .steps article div { grid-template-columns: 1fr; gap: 8px; }
    .access-section { padding-left: 5vw; padding-right: 5vw; }
    .article-grid { grid-template-columns: 1fr; }
    .article-grid article { min-height: auto; }

    .service-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 50px 7vw;
    }
    .service-shield { width: 95px; height: 110px; }
    .service-shield span { font-size: 40px; }
    .refund-button, .refund-info { grid-column: 1; }

    footer { grid-template-columns: 1fr; }
    .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

.guide-page,
.refund-page {
    min-height: 100vh;
}

.guide-nav {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--muted);
    font-size: 12px;
}

.guide-refund-link {
    padding: 9px 14px;
    color: var(--lime);
    border: 1px solid rgba(198, 255, 56, .35);
}

.purchase-main,
.refund-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 4vw 110px;
}

.purchase-hero {
    max-width: 790px;
    margin-bottom: 55px;
}

.purchase-hero h1 {
    margin-bottom: 28px;
}

.purchase-hero > p,
.refund-heading p {
    max-width: 680px;
    color: var(--muted);
    font-size: 14px;
}

.purchase-tip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    padding: 9px 13px;
    color: #c8d0cb;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .02);
    font-size: 11px;
}

.purchase-tip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
}

.purchase-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.purchase-card {
    padding: 31px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(198, 255, 56, .065), var(--surface) 42%);
}

.purchase-platform {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.purchase-platform small {
    color: #59655d;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: .12em;
}

.purchase-platform h2 {
    margin: 2px 0 0;
    font-size: 21px;
}

.purchase-card > p {
    min-height: 72px;
    margin: 25px 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.purchase-card ul {
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
    color: #aeb7b1;
    font-size: 12px;
}

.purchase-card li {
    position: relative;
    margin: 9px 0;
    padding-left: 19px;
}

.purchase-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lime);
}

.purchase-button {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #11150e;
    background: var(--lime);
    font-size: 13px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}

.purchase-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(198, 255, 56, .12);
}

.purchase-notice {
    margin-top: 75px;
    padding: 48px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.purchase-notice h2,
.guide-refund h2,
.refund-aside h2 {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
}

.purchase-notice ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.purchase-notice li {
    padding: 13px 0;
    display: flex;
    gap: 17px;
    color: #abb5ae;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
}

.purchase-notice li span {
    color: var(--lime);
    font-family: var(--font-display);
}

.guide-refund {
    margin-top: 22px;
    padding: 38px 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 45px;
    align-items: center;
    color: #141910;
    background: var(--lime);
}

.guide-refund .section-index {
    color: #46551d;
}

.guide-refund p {
    max-width: 700px;
    margin: 14px 0 0;
    color: #414a25;
    font-size: 12px;
}

.guide-refund > a {
    min-width: 180px;
    padding: 15px 17px;
    color: var(--lime);
    background: #11160f;
    font-size: 12px;
    font-weight: 800;
}

.guide-refund > a span {
    float: right;
}

.compact-footer {
    max-width: 1280px;
}

.compact-footer > p {
    grid-column: auto;
    justify-self: end;
}

.refund-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
    margin-bottom: 54px;
}

.refund-heading h1 {
    margin: 8px 0 20px;
}

.refund-time {
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 21px;
    color: #11150e;
    background: var(--lime);
}

.refund-time strong {
    font-family: var(--font-display);
    font-size: 60px;
    line-height: .9;
}

.refund-time span {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.refund-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 15px;
    align-items: start;
}

.refund-form,
.refund-aside {
    padding: 42px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.form-heading {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.form-heading span {
    color: var(--lime);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .14em;
}

.form-heading h2 {
    margin: 4px 0 0;
    font-size: 25px;
}

.refund-form > label:not(.agreement) {
    display: grid;
    gap: 8px;
    margin-bottom: 19px;
}

.refund-form label > span {
    color: #b9c2bc;
    font-size: 12px;
    font-weight: 600;
}

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

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

.refund-form textarea {
    resize: vertical;
}

.refund-form input:focus,
.refund-form select:focus,
.refund-form textarea:focus {
    border-color: rgba(198, 255, 56, .7);
    box-shadow: 0 0 0 3px rgba(198, 255, 56, .06);
}

.agreement {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 9px 0 23px;
}

.agreement input {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    accent-color: var(--lime);
}

.agreement span {
    font-size: 11px !important;
    font-weight: 400 !important;
}

.submit-refund {
    width: 100%;
    min-height: 54px;
    padding: 0 19px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #11150e;
    border: 0;
    background: var(--lime);
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.form-result {
    display: none;
    margin-top: 15px;
    padding: 13px;
    color: #dff8a5;
    border: 1px solid rgba(198, 255, 56, .25);
    background: rgba(198, 255, 56, .06);
    font-size: 12px;
}

.form-result.show {
    display: block;
}

.refund-aside h2 {
    margin-bottom: 30px;
}

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

.refund-aside li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 13px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.refund-aside li > span {
    color: var(--lime);
    font-family: var(--font-display);
}

.refund-aside li div {
    display: grid;
    gap: 4px;
}

.refund-aside li small {
    color: var(--muted);
    font-size: 10px;
}

.aside-note {
    margin: 25px 0;
    padding: 17px;
    border-left: 2px solid var(--lime);
    background: rgba(198, 255, 56, .045);
}

.aside-note b {
    color: var(--lime);
    font-size: 12px;
}

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

.refund-aside > a {
    display: flex;
    justify-content: space-between;
    padding: 13px 0;
    color: var(--lime);
    font-size: 11px;
    font-weight: 700;
}

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

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

@media (max-width: 900px) {
    .guide-nav {
        grid-column: 2;
    }

    .purchase-options,
    .refund-layout {
        grid-template-columns: 1fr;
    }

    .purchase-card > p {
        min-height: auto;
    }

    .refund-aside {
        order: -1;
    }
}

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

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

    .purchase-main,
    .refund-main {
        padding: 55px 5vw 80px;
    }

    .purchase-hero {
        margin-bottom: 38px;
    }

    .purchase-hero h1 {
        font-size: 58px;
    }

    .purchase-card {
        padding: 23px;
    }

    .purchase-button {
        min-height: 58px;
        font-size: 14px;
    }

    .purchase-notice {
        margin-top: 50px;
        padding: 27px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .guide-refund {
        padding: 28px;
        grid-template-columns: 1fr;
        gap: 23px;
    }

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

    .compact-footer > p {
        justify-self: start;
    }

    .refund-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .refund-heading h1 {
        font-size: 62px;
    }

    .refund-time {
        min-width: 0;
        width: 100%;
    }

    .refund-form,
    .refund-aside {
        padding: 25px;
    }
}
