:root {
    --paper: #f2efe7;
    --paper-deep: #e7e1d4;
    --ink: #151817;
    --muted: #666b66;
    --orange: #f05a32;
    --orange-dark: #c83f1e;
    --green: #485d4d;
    --lime: #cbe962;
    --line: rgba(21, 24, 23, .18);
    --white: #fffdf7;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(rgba(21, 24, 23, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 24, 23, .025) 1px, transparent 1px),
        var(--paper);
    background-size: 24px 24px;
    font-family: "Arial Narrow", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    align-items: center;
    height: 82px;
    padding: 0 clamp(20px, 5vw, 76px);
    border-bottom: 2px solid var(--ink);
    background: rgba(242, 239, 231, .94);
    backdrop-filter: blur(14px);
}

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

.brand-mark {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    color: var(--white);
    background: var(--orange);
    border: 2px solid var(--ink);
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    box-shadow: 4px 4px 0 var(--ink);
    transform: rotate(-3deg);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

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

.brand small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .22em;
}

.main-nav {
    display: flex;
    gap: clamp(22px, 3vw, 45px);
    margin: auto;
}

.main-nav a,
.footer-links a {
    position: relative;
    color: #353936;
    font-size: 13px;
    font-weight: 700;
}

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

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

.header-action {
    padding: 10px 19px;
    border: 2px solid var(--ink);
    color: var(--white);
    background: var(--ink);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 4px 4px 0 var(--orange);
    transition: transform .2s, box-shadow .2s;
}

.header-action:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--orange);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    padding: 7px;
    border: 2px solid var(--ink);
    background: var(--paper);
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
    transition: transform .25s, opacity .25s;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 720px;
    padding: clamp(72px, 8vw, 118px) clamp(22px, 7vw, 110px);
    overflow: hidden;
    border-bottom: 2px solid var(--ink);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: .34;
    background:
        repeating-radial-gradient(circle at 74% 50%, transparent 0 74px, rgba(21,24,23,.11) 75px 76px),
        linear-gradient(115deg, transparent 0 59%, rgba(72,93,77,.09) 59% 100%);
}

.hero-glow {
    position: absolute;
    top: -110px;
    right: -90px;
    width: 47vw;
    height: 230px;
    background: var(--orange);
    opacity: .95;
    transform: rotate(7deg);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 19px;
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.eyebrow span {
    width: 30px;
    height: 4px;
    background: currentColor;
}

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

.hero h1 {
    max-width: 760px;
    margin-bottom: 27px;
    font-size: clamp(55px, 7.2vw, 104px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -.075em;
}

.hero h1 em {
    position: relative;
    z-index: 0;
    color: var(--white);
    font-style: normal;
    white-space: nowrap;
}

.hero h1 em::before {
    position: absolute;
    z-index: -1;
    inset: 4% -5% -3%;
    background: var(--orange);
    transform: rotate(-1.5deg);
    content: "";
}

.hero-copy {
    max-width: 600px;
    margin-bottom: 34px;
    color: #4e544f;
    font-size: 16px;
    font-weight: 500;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 54px;
    padding: 0 24px;
    border: 2px solid var(--ink);
    font-size: 14px;
    font-weight: 900;
    transition: transform .2s, box-shadow .2s, background-color .2s;
}

.button-primary {
    color: var(--white);
    background: var(--ink);
    box-shadow: 6px 6px 0 var(--orange);
}

.button-primary:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--orange);
}

.button-ghost {
    background: rgba(255, 253, 247, .5);
}

.button-ghost:hover {
    color: var(--white);
    background: var(--green);
}

.hero-stats {
    display: flex;
    gap: clamp(30px, 5vw, 68px);
    margin-top: 65px;
}

.hero-stats div {
    position: relative;
}

.hero-stats div:not(:last-child)::after {
    position: absolute;
    top: 2px;
    right: clamp(-34px, -2.5vw, -15px);
    width: 2px;
    height: 44px;
    background: var(--ink);
    opacity: .2;
    content: "";
}

.hero-stats strong,
.hero-stats span {
    display: block;
}

.hero-stats strong {
    font-size: 22px;
    line-height: 1.2;
}

.hero-stats span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.hero-visual {
    min-height: 500px;
}

.radar {
    position: absolute;
    top: 51%;
    left: 54%;
    width: min(35vw, 470px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%) rotate(-7deg);
    border: 3px solid var(--ink);
    border-radius: 50%;
    background:
        linear-gradient(90deg, transparent 49.6%, rgba(21,24,23,.3) 50%, transparent 50.4%),
        linear-gradient(transparent 49.6%, rgba(21,24,23,.3) 50%, transparent 50.4%),
        rgba(203, 233, 98, .78);
    box-shadow: 12px 12px 0 rgba(21, 24, 23, .12);
}

.radar::before,
.radar::after,
.radar-ring {
    position: absolute;
    border: 2px solid rgba(21,24,23,.25);
    border-radius: 50%;
    content: "";
}

.radar::before {
    inset: 17%;
}

.radar::after {
    inset: 35%;
}

.radar-ring {
    inset: 7%;
    border-style: dashed;
}

.radar-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45%;
    height: 3px;
    transform-origin: left;
    background: linear-gradient(90deg, var(--orange), transparent);
    animation: scan 8s linear infinite;
}

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

.point {
    position: absolute;
    width: 11px;
    height: 11px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 4px rgba(240, 90, 50, .2);
}

.point-one { top: 25%; left: 61%; }
.point-two { top: 66%; left: 27%; }
.point-three { top: 74%; left: 69%; }

.radar-label {
    position: absolute;
    top: 41%;
    left: 19%;
    padding: 12px 16px;
    transform: rotate(7deg);
    border: 2px solid var(--ink);
    color: var(--white);
    background: var(--ink);
}

.radar-label small,
.radar-label strong {
    display: block;
}

.radar-label small {
    color: var(--lime);
    font-size: 9px;
}

.radar-label strong {
    font-size: 13px;
}

.floating-note {
    position: absolute;
    padding: 12px 16px;
    border: 2px solid var(--ink);
    background: var(--white);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 6px 6px 0 var(--ink);
}

.floating-note span {
    margin-right: 8px;
    color: var(--orange);
    font-weight: 900;
}

.note-one { top: 15%; right: -2%; }
.note-two { bottom: 10%; left: 0; }

.ticker {
    overflow: hidden;
    padding: 15px 0;
    color: var(--white);
    background: var(--ink);
    border-bottom: 2px solid var(--ink);
}

.ticker-track {
    display: flex;
    justify-content: center;
    gap: 28px;
    min-width: max-content;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
}

.ticker-track i {
    color: var(--orange);
    font-size: 8px;
}

.section {
    padding: clamp(74px, 10vw, 136px) clamp(22px, 7vw, 110px);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.section-heading h2,
.article-intro h2,
.quick-start h2,
.refund-info h2 {
    margin-bottom: 0;
    font-size: clamp(38px, 4.6vw, 66px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.055em;
}

.section-heading > p {
    max-width: 450px;
    margin-bottom: 4px;
    padding-left: 18px;
    border-left: 3px solid var(--orange);
    color: var(--muted);
    font-size: 14px;
}

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

.guide-card {
    position: relative;
    min-height: 430px;
    padding: 28px;
    overflow: hidden;
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 7px 7px 0 rgba(21, 24, 23, .14);
    transition: transform .25s, box-shadow .25s;
}

.guide-card:hover {
    transform: translate(-2px, -4px);
    box-shadow: 11px 13px 0 rgba(21, 24, 23, .16);
}

.guide-card-featured {
    grid-column: span 2;
    min-height: 520px;
    padding-right: 44%;
    background:
        linear-gradient(115deg, rgba(203,233,98,.45), transparent 46%),
        var(--white);
}

.card-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 66px;
}

.tag {
    padding: 4px 10px;
    border: 2px solid var(--ink);
    color: var(--white);
    background: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
}

.read-time,
.index-number {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.index-number {
    color: var(--ink);
    font-size: 27px;
    font-weight: 900;
}

.guide-card h3 {
    margin-bottom: 16px;
    font-size: clamp(23px, 2.4vw, 34px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.035em;
}

.guide-card p {
    margin-bottom: 25px;
    color: #5f655f;
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.text-link span {
    color: var(--orange);
    transition: transform .25s;
}

.text-link:hover span {
    transform: translateX(5px);
}

.guide-graphic {
    position: absolute;
    top: 90px;
    right: 24px;
    width: 39%;
    height: calc(100% - 126px);
}

.map-graphic {
    border: 2px solid var(--ink);
    border-radius: 48% 35% 52% 38%;
    background:
        linear-gradient(25deg, transparent 48%, rgba(21,24,23,.12) 49%, rgba(21,24,23,.12) 51%, transparent 52%),
        radial-gradient(circle at 40% 35%, #768a6b 0 4%, transparent 5%),
        radial-gradient(circle at 70% 60%, #879878 0 10%, transparent 11%),
        #b7c7a3;
    transform: rotate(5deg);
    box-shadow: 8px 8px 0 var(--orange);
}

.route {
    position: absolute;
    height: 3px;
    background: var(--orange);
    transform-origin: left;
}

.route-a {
    top: 36%;
    left: 22%;
    width: 55%;
    transform: rotate(28deg);
}

.route-b {
    top: 61%;
    left: 49%;
    width: 31%;
    transform: rotate(-42deg);
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid var(--orange);
    border-radius: 50%;
    background: var(--white);
}

.dot-a { top: 31%; left: 20%; }
.dot-b { top: 58%; left: 50%; }
.dot-c { top: 37%; right: 18%; }

.map-graphic b {
    position: absolute;
    right: 20%;
    bottom: 15%;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--ink);
    border-radius: 50% 50% 50% 0;
    color: var(--white);
    background: var(--orange);
    transform: rotate(-50deg);
}

.mini-icon {
    width: 86px;
    height: 64px;
    margin: -34px 0 48px;
}

.ammo-icon {
    display: flex;
    align-items: end;
    gap: 8px;
}

.ammo-icon span {
    width: 16px;
    height: 48px;
    border: 2px solid var(--ink);
    background: linear-gradient(to bottom, var(--orange) 0 24%, var(--paper-deep) 25%);
    clip-path: polygon(50% 0, 100% 18%, 100% 100%, 0 100%, 0 18%);
}

.ammo-icon span:nth-child(2) { height: 58px; }
.ammo-icon span:nth-child(3) { height: 39px; }

.sliders-icon {
    display: grid;
    gap: 12px;
    align-content: center;
}

.sliders-icon i {
    position: relative;
    display: block;
    width: 78px;
    height: 3px;
    background: var(--ink);
}

.sliders-icon i::after {
    position: absolute;
    top: -6px;
    width: 13px;
    height: 13px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--orange);
    content: "";
}

.sliders-icon i:nth-child(1)::after { left: 15%; }
.sliders-icon i:nth-child(2)::after { left: 65%; }
.sliders-icon i:nth-child(3)::after { left: 40%; }

.team-icon {
    display: flex;
    align-items: end;
}

.team-icon i {
    display: block;
    width: 35px;
    height: 35px;
    margin-right: -8px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--paper-deep);
}

.team-icon i:nth-child(2) {
    z-index: 1;
    width: 49px;
    height: 49px;
    background: var(--orange);
}

.route-article {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(50px, 9vw, 140px);
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        var(--green);
    background-size: 28px 28px;
    border-block: 2px solid var(--ink);
}

.article-number {
    position: absolute;
    right: -28px;
    bottom: -185px;
    color: rgba(255,255,255,.05);
    font-size: 440px;
    font-weight: 900;
    line-height: 1;
}

.route-article .eyebrow {
    color: var(--lime);
}

.article-intro > p:last-child {
    max-width: 450px;
    margin-top: 26px;
    color: #d2d9d1;
}

.steps-list {
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    list-style: none;
}

.steps-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 22px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,.27);
}

.steps-list li:last-child {
    border-bottom: 1px solid rgba(255,255,255,.27);
}

.steps-list > li > span {
    color: var(--lime);
    font-size: 14px;
    font-weight: 900;
}

.steps-list h3 {
    margin-bottom: 6px;
    font-size: 19px;
}

.steps-list p {
    margin: 0;
    color: #d2d9d1;
    font-size: 13px;
}

.gallery-section {
    background: var(--paper-deep);
    border-bottom: 2px solid var(--ink);
}

.image-gallery {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 20px;
}

.image-gallery figure {
    position: relative;
    min-height: 410px;
    margin: 0;
    overflow: hidden;
    border: 2px solid var(--ink);
    background: var(--ink);
    box-shadow: 8px 8px 0 var(--orange);
}

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

.image-gallery figure:hover img {
    transform: scale(1.035);
    filter: saturate(1) contrast(1.03);
}

.image-gallery figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 54px 24px 22px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(10,12,11,.92));
}

.image-gallery figcaption span,
.image-gallery figcaption strong {
    display: block;
}

.image-gallery figcaption span {
    color: var(--lime);
    font-size: 10px;
    font-weight: 900;
}

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

.quick-start {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(45px, 9vw, 130px);
}

.quick-start-copy > p:last-child {
    max-width: 410px;
    margin-top: 24px;
    color: var(--muted);
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 8px 8px 0 rgba(21,24,23,.13);
}

.check-grid div {
    min-height: 136px;
    padding: 25px;
    border-top: 1px solid var(--line);
}

.check-grid div:nth-child(-n+2) {
    border-top: 0;
}

.check-grid div:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.check-grid span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
}

.check-grid p {
    max-width: 230px;
    margin: 14px 0 0;
    font-size: 15px;
    font-weight: 800;
}

.article-summaries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 0;
}

.article-summaries article {
    position: relative;
    padding: 39px;
    border: 2px solid var(--ink);
    border-right: 0;
    background: var(--white);
}

.article-summaries article:last-child {
    border-right: 2px solid var(--ink);
}

.article-summaries article::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    height: 7px;
    background: var(--orange);
    content: "";
}

.article-summaries span {
    color: var(--orange-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .12em;
}

.article-summaries h2 {
    margin: 22px 0 16px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.25;
}

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

.refund-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 0 clamp(22px, 7vw, 110px) clamp(70px, 8vw, 110px);
    padding: clamp(38px, 5vw, 66px);
    color: var(--white);
    background: var(--orange);
    border: 2px solid var(--ink);
    box-shadow: 10px 10px 0 var(--ink);
}

.refund-info .eyebrow {
    color: #40160b;
}

.refund-info h2 {
    font-size: clamp(32px, 3.8vw, 52px);
}

.refund-info p:last-child {
    max-width: 700px;
    margin: 18px 0 0;
    color: #fff1e8;
    font-size: 14px;
}

.button-light {
    flex: 0 0 auto;
    color: var(--ink);
    background: var(--white);
    box-shadow: 5px 5px 0 var(--ink);
}

.button-light:hover {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--ink);
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 46px;
    padding: 46px clamp(22px, 7vw, 110px);
    color: var(--white);
    background: var(--ink);
}

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

.footer-brand p,
.copyright {
    color: #929a94;
    font-size: 11px;
}

.site-footer .brand-mark {
    border-color: var(--white);
    box-shadow: 4px 4px 0 var(--white);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-links a {
    color: #c2c7c3;
}

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

.copyright {
    grid-column: 1 / -1;
    margin: 0;
}

@media (max-width: 980px) {
    .main-nav,
    .header-action {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav.is-open {
        position: fixed;
        inset: 82px 0 auto 0;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 12px 22px 28px;
        border-bottom: 2px solid var(--ink);
        background: var(--paper);
    }

    .main-nav.is-open a {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

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

    .menu-toggle.is-open span:first-child {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }

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

    .hero-visual {
        position: absolute;
        z-index: 0;
        inset: 85px -170px auto auto;
        width: 570px;
        height: 570px;
        opacity: .32;
    }

    .radar {
        width: 440px;
    }

    .floating-note {
        display: none;
    }

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

    .guide-card-featured {
        grid-column: span 2;
    }

    .route-article,
    .quick-start {
        grid-template-columns: 1fr;
    }

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

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

    .article-summaries {
        grid-template-columns: 1fr;
    }

    .article-summaries article,
    .article-summaries article:last-child {
        border-right: 2px solid var(--ink);
        border-bottom: 0;
    }

    .article-summaries article:last-child {
        border-bottom: 2px solid var(--ink);
    }
}

@media (max-width: 640px) {
    .site-header {
        height: 70px;
    }

    .brand strong {
        font-size: 14px;
    }

    .main-nav.is-open {
        inset: 70px 0 auto;
    }

    .hero {
        min-height: 700px;
        padding-top: 84px;
    }

    .hero h1 {
        font-size: clamp(50px, 15vw, 68px);
    }

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

    .hero-actions .button {
        width: 100%;
    }

    .hero-stats {
        gap: 28px;
        margin-top: 52px;
    }

    .hero-stats div:not(:last-child)::after {
        display: none;
    }

    .hero-visual {
        right: -330px;
    }

    .ticker-track {
        justify-content: flex-start;
        transform: translateX(-90px);
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 20px;
    }

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

    .guide-card,
    .guide-card-featured {
        grid-column: auto;
        min-height: 0;
        padding: 24px;
    }

    .guide-card-featured {
        padding-top: 265px;
    }

    .guide-card-featured .card-topline {
        position: absolute;
        top: 24px;
        right: 24px;
        left: 24px;
    }

    .guide-graphic {
        top: 70px;
        right: 50%;
        width: 210px;
        height: 175px;
        transform: translateX(50%) rotate(5deg);
    }

    .card-topline {
        margin-bottom: 44px;
    }

    .article-number {
        font-size: 280px;
    }

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

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

    .check-grid div,
    .check-grid div:nth-child(-n+2),
    .check-grid div:nth-child(odd) {
        min-height: 100px;
        border-top: 1px solid var(--line);
        border-right: 0;
    }

    .check-grid div:first-child {
        border-top: 0;
    }

    .refund-info {
        display: block;
    }

    .refund-info .button {
        width: 100%;
        margin-top: 25px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px 24px;
    }

    .copyright {
        grid-column: auto;
    }
}

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

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

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