:root {
    --guide-accent: #0b4784;
    --guide-accent-alt: #0f766e;
    --guide-accent-soft: rgba(11, 71, 132, 0.1);
    --guide-accent-strong: rgba(11, 71, 132, 0.18);
    --guide-dark: #101827;
    --guide-ink: #172033;
    --guide-muted: #5f6f83;
    --guide-line: #d8e0ea;
    --guide-bg: #f5f7fa;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--guide-bg);
    color: var(--guide-ink);
    max-width: 100%;
    overflow-x: hidden;
}

.guide-sticky-top > div,
.guide-hero > div,
.guide-band > div,
.guide-use-band > div,
.guide-section > div,
.guide-final > div,
footer > div {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

p {
    text-wrap: pretty;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

.guide-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.guide-sticky-top {
    background: rgba(15, 23, 42, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.guide-nav-row {
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.guide-nav-label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.guide-button {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    border-radius: 0.7rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.guide-button-primary {
    background: var(--guide-accent);
    color: #ffffff;
}

.guide-button-secondary {
    border: 1px solid var(--guide-line);
    background: #ffffff;
    color: var(--guide-ink);
}

.guide-button-muted {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.guide-button-light {
    background: #ffffff;
    color: #0f172a;
}

.guide-hero {
    padding: 4.5rem 0 3.5rem;
    background: #ffffff;
    border-bottom: 1px solid var(--guide-line);
}

.guide-index-page .guide-hero {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.guide-index-page .guide-hero-grid {
    gap: clamp(2.25rem, 6vw, 5.5rem);
}

.guide-index-page .guide-hero h1 {
    max-width: 48rem;
}

.guide-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center;
}

.guide-hero-grid > * {
    min-width: 0;
}

.guide-kicker {
    margin: 0;
    color: var(--guide-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.guide-hero h1 {
    margin-top: 1rem;
    max-width: 44rem;
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    line-height: 1.02;
    font-weight: 700;
}

.guide-hero-copy {
    max-width: 42rem;
    margin-top: 1.25rem;
    color: var(--guide-muted);
    font-size: clamp(1.02rem, 1.45vw, 1.35rem);
    line-height: 1.65;
}

.guide-tags {
    margin-top: 1.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.guide-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--guide-line);
    border-radius: 999px;
    background: #f8fafc;
    padding: 0.48rem 0.82rem;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
}

.guide-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.guide-photo {
    margin: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    border-radius: 0.9rem;
    background: #e2e8f0;
    box-shadow: 0 22px 60px -38px rgba(15, 23, 42, 0.55);
}

.guide-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.guide-deck-shell {
    justify-self: center;
    width: min(100%, 39rem);
    perspective: 1100px;
}

.guide-deck-stage {
    position: relative;
    height: clamp(20rem, 35vw, 27.5rem);
    touch-action: pan-y;
}

.guide-deck-card {
    --deck-x: 0px;
    --deck-y: 0px;
    --deck-rotate: 0deg;
    --deck-scale: 1;
    --deck-opacity: 1;
    --deck-z: 1;
    --deck-saturation: 1;
    --deck-brightness: 1;
    --deck-pointer: auto;
    --drag-x: 0px;
    --drag-y: 0px;
    --drag-rotate: 0deg;
    --recycle-side: 1;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 0.95rem;
    padding: 0;
    background: #e2e8f0;
    box-shadow: 0 24px 70px -40px rgba(15, 23, 42, 0.76);
    cursor: pointer;
    opacity: var(--deck-opacity);
    z-index: var(--deck-z);
    pointer-events: var(--deck-pointer);
    transform:
        translate3d(calc(var(--deck-x) + var(--drag-x)), calc(var(--deck-y) + var(--drag-y)), 0)
        rotate(calc(var(--deck-rotate) + var(--drag-rotate)))
        scale(var(--deck-scale));
    transform-origin: 52% 58%;
    transform-style: preserve-3d;
    transition:
        transform 0.58s cubic-bezier(0.18, 0.88, 0.18, 1),
        opacity 0.46s ease,
        box-shadow 0.24s ease,
        filter 0.42s ease;
    will-change: transform, opacity;
    filter: saturate(var(--deck-saturation)) brightness(var(--deck-brightness));
}

.guide-deck-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.guide-deck-card.is-active:hover {
    box-shadow: 0 34px 86px -42px rgba(15, 23, 42, 0.86);
}

.guide-deck-card.is-active {
    animation: guideDeckHint 4.6s ease-in-out infinite;
}

.guide-deck-card.is-dragging {
    cursor: grabbing;
    animation: none;
    transition: none;
}

.guide-deck-card.is-recycling {
    animation: none;
    opacity: 0.34;
    pointer-events: none;
    transform:
        translate3d(calc(var(--recycle-side) * 46px), 58px, -120px)
        rotate(calc(var(--recycle-side) * -6deg))
        scale(0.79);
    filter: saturate(0.72) brightness(0.88);
    z-index: 8;
}

.guide-deck-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.guide-deck-note {
    width: max-content;
    max-width: min(100%, 31rem);
    margin: 1.65rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.guide-deck-note:hover {
    color: var(--guide-accent);
}

@keyframes guideDeckHint {
    0%,
    100% {
        transform:
            translate3d(calc(var(--deck-x) + var(--drag-x)), calc(var(--deck-y) + var(--drag-y)), 0)
            rotate(calc(var(--deck-rotate) + var(--drag-rotate)))
            scale(var(--deck-scale));
    }

    45% {
        transform:
            translate3d(calc(var(--deck-x) + var(--drag-x) + 5px), calc(var(--deck-y) + var(--drag-y) - 3px), 0)
            rotate(calc(var(--deck-rotate) + var(--drag-rotate) + 0.8deg))
            scale(var(--deck-scale));
    }

    60% {
        transform:
            translate3d(calc(var(--deck-x) + var(--drag-x) - 3px), calc(var(--deck-y) + var(--drag-y) - 1px), 0)
            rotate(calc(var(--deck-rotate) + var(--drag-rotate) - 0.35deg))
            scale(var(--deck-scale));
    }
}

.guide-band {
    padding: 3.25rem 0;
    background: #edf2f7;
    border-bottom: 1px solid var(--guide-line);
}

.guide-flow-band {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    background:
        radial-gradient(circle at 16% 18%, var(--guide-accent-soft), transparent 24rem),
        radial-gradient(circle at 92% 18%, rgba(15, 118, 110, 0.1), transparent 22rem),
        #edf2f7;
}

.guide-flow-band .guide-section-head {
    max-width: 56rem;
}

.guide-flow-band .guide-section-head h2 {
    max-width: 54rem;
    overflow-wrap: anywhere;
}

.guide-use-band {
    padding: 4.25rem 0;
    background: #eef4f8;
    border-top: 1px solid var(--guide-line);
}

.guide-use-band .guide-section-head {
    max-width: 64rem;
}

.guide-use-band .guide-section-head h2 {
    max-width: 62rem;
    font-size: clamp(2rem, 4.2vw, 4.2rem);
    letter-spacing: -0.01em;
}

.guide-section {
    padding: 4.25rem 0;
}

.guide-section-tight {
    padding-top: 1rem;
}

.guide-section-head {
    max-width: 43rem;
}

.guide-section-head h2,
.guide-final-copy h2 {
    margin-top: 0.7rem;
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    line-height: 1.08;
    font-weight: 700;
}

.guide-steps {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.guide-use-steps {
    gap: 1.15rem;
}

.guide-step,
.guide-store-card,
.guide-index-card,
.guide-paths article {
    border: 1px solid var(--guide-line);
    border-radius: 0.8rem;
    background: #ffffff;
    box-shadow: 0 20px 46px -36px rgba(15, 23, 42, 0.32);
}

.guide-step {
    padding: 1.25rem;
}

.guide-use-step {
    --guide-step-accent: #0b4784;
    --guide-step-accent-alt: #0f766e;
    position: relative;
    min-height: 15rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border-radius: 1rem;
    border-color: rgba(148, 163, 184, 0.42);
    padding: 1.35rem;
    background:
        linear-gradient(135deg, rgba(11, 71, 132, 0.1), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 28px 70px -46px rgba(15, 23, 42, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.guide-use-step:nth-child(2) {
    --guide-step-accent: #0f766e;
    --guide-step-accent-alt: #7c3f14;
}

.guide-use-step:nth-child(3) {
    --guide-step-accent: #7c3f14;
    --guide-step-accent-alt: #0b4784;
}

.guide-use-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent 54%),
        linear-gradient(135deg, transparent 0 58%, rgba(15, 23, 42, 0.04) 58% 100%);
    pointer-events: none;
}

.guide-use-step::after {
    content: "";
    position: absolute;
    top: 0;
    left: 1.35rem;
    right: 1.35rem;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--guide-step-accent), var(--guide-step-accent-alt));
}

.guide-use-step:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 71, 132, 0.25);
    box-shadow: 0 34px 86px -48px rgba(15, 23, 42, 0.72);
}

.guide-use-step .guide-step-index {
    position: absolute;
    top: 0.65rem;
    right: 1rem;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: rgba(15, 23, 42, 0.08);
    font-size: clamp(3.4rem, 6vw, 5.9rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.06em;
}

.guide-step-icon {
    position: relative;
    z-index: 1;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    background: var(--guide-step-accent);
    color: #ffffff;
    box-shadow: 0 16px 36px -22px var(--guide-step-accent);
}

.guide-step span {
    width: 2.15rem;
    height: 2.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: var(--guide-accent);
    color: #ffffff;
    font-weight: 600;
}

.guide-reason-icon {
    width: 1.95rem;
    height: 1.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--reason-color, var(--guide-accent));
}

.guide-step h3 {
    margin-top: 1rem;
    font-size: 1.12rem;
    font-weight: 600;
}

.guide-use-step h3,
.guide-use-step p {
    position: relative;
    z-index: 1;
}

.guide-use-step h3 {
    margin-top: 1.3rem;
    font-size: 1.25rem;
}

.guide-use-step p {
    max-width: 21rem;
}

.guide-step p,
.guide-store-copy,
.guide-final-copy p,
.guide-paths p,
.guide-index-body p {
    color: var(--guide-muted);
    line-height: 1.6;
}

.guide-step p {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.guide-flow-steps {
    --guide-flow-node: clamp(8.9rem, 16vw, 12.75rem);
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: clamp(2rem, 4vw, 3.1rem);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.75rem, 4.5vw, 4.75rem);
    align-items: start;
}

.guide-flow-steps::before {
    content: "";
    position: absolute;
    left: 11%;
    right: 11%;
    top: calc(var(--guide-flow-node) * 0.67);
    height: clamp(3rem, 5.5vw, 4.35rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 120' preserveAspectRatio='none'%3E%3Cpath d='M8 68 C 160 8 260 112 410 66 S 690 14 892 66' fill='none' stroke='%230b4784' stroke-width='5' stroke-linecap='round' stroke-dasharray='18 18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.26;
    z-index: 0;
    pointer-events: none;
}

.guide-flow-step {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
    text-align: center;
    transition: transform 0.24s ease;
}

.guide-flow-step:nth-child(2) {
    transform: translateY(clamp(1.35rem, 2.7vw, 2.1rem));
}

.guide-flow-step:nth-child(3) {
    transform: translateY(0.35rem);
}

.guide-flow-step:hover figure {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 30px 70px -44px rgba(15, 23, 42, 0.72);
}

.guide-flow-step figure {
    position: relative;
    margin: 0;
    width: var(--guide-flow-node);
    max-width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    background: linear-gradient(145deg, #ffffff 0%, #e9f0f6 100%);
    box-shadow: 0 24px 58px -42px rgba(15, 23, 42, 0.62);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.guide-flow-step figure::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.72),
        inset 0 -24px 42px -36px rgba(15, 23, 42, 0.5);
    pointer-events: none;
}

.guide-flow-step img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.guide-flow-step:hover img {
    transform: scale(1.035);
}

.guide-flow-body {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.05rem 0 0;
}

.guide-flow-body span {
    position: relative;
    top: auto;
    left: auto;
    width: 3.1rem;
    height: 3.1rem;
    margin: -2.35rem auto 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    border-radius: 999px;
    background: var(--guide-accent);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 18px 34px -22px rgba(15, 23, 42, 0.8);
}

.guide-flow-step:nth-child(2) .guide-flow-body span {
    background: var(--guide-accent-alt);
}

.guide-flow-step:nth-child(3) .guide-flow-body span {
    background: #101827;
}

.guide-flow-body h3 {
    margin-top: 0;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.15;
    font-weight: 700;
    text-wrap: balance;
}

.guide-flow-body p {
    max-width: 18rem;
    margin: 0.7rem auto 0;
    color: var(--guide-muted);
    font-size: 0.96rem;
    line-height: 1.58;
    text-wrap: pretty;
}

.guide-blueprint-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--guide-line);
}

.guide-blueprint {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1.18fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.guide-blueprint-intro {
    position: sticky;
    top: 6rem;
}

.guide-blueprint-intro h2,
.guide-mini-faq-copy h2 {
    margin-top: 0.7rem;
    font-size: clamp(1.85rem, 3.4vw, 3.25rem);
    line-height: 1.06;
    font-weight: 700;
}

.guide-blueprint-intro p,
.guide-mini-faq-copy p {
    margin-top: 1rem;
    color: var(--guide-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.guide-blueprint-route {
    position: relative;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
}

.guide-blueprint-route::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 1.35rem;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(11, 71, 132, 0.36) 0 10px,
        transparent 10px 18px
    );
}

.guide-blueprint-route > div {
    position: relative;
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    text-align: center;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 700;
}

.guide-blueprint-route span {
    width: 2.7rem;
    height: 2.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #ffffff;
    border-radius: 999px;
    background: var(--guide-accent);
    color: #ffffff;
    box-shadow: 0 18px 36px -24px rgba(15, 23, 42, 0.75);
}

.guide-blueprint-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.guide-blueprint-card {
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 1rem;
    background: #ffffff;
    padding: 1.25rem;
    box-shadow: 0 26px 68px -48px rgba(15, 23, 42, 0.55);
}

.guide-blueprint-card-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.guide-blueprint-card-head > span {
    width: 2.65rem;
    height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    background: var(--guide-accent-soft);
    color: var(--guide-accent);
}

.guide-blueprint-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.18;
}

.guide-blueprint-card ul {
    display: grid;
    gap: 0.78rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.guide-blueprint-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
}

.guide-blueprint-item > span {
    width: 1.45rem;
    height: 1.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ecfdf5;
    color: #0f766e;
}

.guide-blueprint-warning > span {
    background: #fff7ed;
    color: #c2410c;
}

.guide-blueprint-item p {
    margin: 0;
    color: #405064;
    font-size: 0.9rem;
    line-height: 1.48;
}

.guide-mini-faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.guide-mini-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1.18fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: start;
}

.guide-faq-list {
    display: grid;
    gap: 0.8rem;
}

.guide-faq-item {
    border: 1px solid rgba(148, 163, 184, 0.32);
    border-radius: 0.95rem;
    background: #ffffff;
    box-shadow: 0 22px 60px -48px rgba(15, 23, 42, 0.62);
    overflow: hidden;
}

.guide-faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    text-align: left;
    color: #111827;
    font-weight: 700;
    line-height: 1.35;
}

.guide-faq-item button i {
    flex: 0 0 auto;
    color: var(--guide-accent);
    transition: transform 0.25s ease;
}

.guide-faq-inner {
    padding: 0 1.1rem 1rem;
}

.guide-faq-inner p {
    margin: 0;
    color: var(--guide-muted);
    font-size: 0.95rem;
    line-height: 1.62;
}

.guide-why {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 1.12fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.guide-why ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-reason {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--guide-line);
    padding: 0.95rem 0;
}

.guide-reason-1 {
    --reason-color: #0f766e;
}

.guide-reason-2 {
    --reason-color: #c026d3;
}

.guide-reason-3 {
    --reason-color: #2563eb;
}

.guide-reason p {
    margin: 0;
    color: #334155;
    font-weight: 600;
    line-height: 1.45;
}

.guide-compare-note {
    position: relative;
    margin: 1.35rem 0 0;
    padding: 0.1rem 0 0 3.1rem;
    color: #334155;
    font-size: 0.96rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
}

.guide-compare-note::before {
    content: "“";
    position: absolute;
    left: 0.15rem;
    top: -0.65rem;
    color: #c026d3;
    font-size: 4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    opacity: 0.28;
}

.guide-store-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.guide-stores-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #f3f7fb 48%, #ffffff 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.guide-store-note {
    max-width: 46rem;
    margin: 0.8rem 0 0;
    color: var(--guide-muted);
    font-size: 1rem;
    line-height: 1.68;
    text-wrap: pretty;
}

.guide-store-card {
    position: relative;
    min-height: 13.7rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.25rem;
    border-color: rgba(148, 163, 184, 0.26);
    border-radius: 1.15rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
    box-shadow: 0 22px 56px -44px rgba(15, 23, 42, 0.54);
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.guide-store-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--guide-accent), var(--guide-accent-alt));
    opacity: 0.92;
}

.guide-store-card:hover {
    transform: translateY(-4px);
    border-color: var(--guide-accent);
    background:
        linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 30px 68px -42px rgba(15, 23, 42, 0.64);
}

.guide-store-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.95rem;
}

.guide-store-title {
    min-width: 0;
}

.guide-store-card h3 {
    color: var(--guide-ink);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.16;
    text-wrap: balance;
}

.guide-store-label {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.38rem;
    color: var(--guide-accent);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.32;
}

.guide-store-label span {
    color: #64748b;
    font-weight: 500;
}

.guide-store-logo {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.34);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: 0.56rem;
    object-fit: contain;
    box-shadow: 0 16px 34px -28px rgba(15, 23, 42, 0.82);
}

.guide-store-copy {
    margin-top: 1rem;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.56;
    text-wrap: pretty;
}

.guide-store-link {
    width: max-content;
    margin-top: auto;
    padding: 0.6rem 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--guide-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 26px -24px rgba(15, 23, 42, 0.66);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.guide-store-link:hover {
    transform: translateY(-1px);
    border-color: transparent;
    background: var(--guide-accent);
    color: #ffffff;
}

.guide-store-link i {
    transition: transform 0.2s ease;
}

.guide-store-link:hover i {
    transform: translate(2px, -2px);
}

.guide-final {
    padding: 4.5rem 0;
    background: #ffffff;
    border-top: 1px solid var(--guide-line);
}

.guide-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.guide-final-copy p {
    margin-top: 1rem;
    max-width: 38rem;
}

.guide-final-character {
    max-width: min(18rem, 72vw);
    margin: 1.75rem 0 0;
}

.guide-final-character img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.guide-paths {
    display: grid;
    grid-template-columns: repeat(2, minmax(18rem, 1fr));
    gap: 1rem;
    justify-content: center;
}

.guide-paths article {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
}

.guide-paths i {
    color: var(--guide-accent);
}

.guide-paths h3 {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.guide-paths p {
    margin-top: 0.55rem;
    font-size: 0.94rem;
}

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

.guide-path-link {
    margin-top: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 400;
}

.guide-path-link:hover {
    color: #0b4784;
}

.guide-path-link i {
    width: 0.95rem;
    height: 0.95rem;
    color: currentColor;
}

@media (max-width: 1180px) {
    .guide-paths {
        grid-template-columns: minmax(0, min(100%, 30rem));
    }
}

.guide-index-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.guide-index-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--guide-accent), var(--guide-accent-alt));
    opacity: 0;
    transition: opacity 0.24s ease;
    z-index: 2;
}

.guide-index-card:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 71, 132, 0.25);
    box-shadow: 0 34px 80px -48px rgba(15, 23, 42, 0.62);
}

.guide-index-card:hover::before {
    opacity: 1;
}

.guide-index-image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.guide-index-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.guide-index-card:hover .guide-index-image img {
    transform: scale(1.035);
}

.guide-index-body {
    padding: 1.15rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-index-body h3 {
    margin-top: 0.45rem;
    font-size: 1.28rem;
    font-weight: 600;
}

.guide-index-body p {
    margin-top: 0.6rem;
    font-size: 0.95rem;
}

.guide-index-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1rem;
}

.guide-mini-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--guide-line);
    border-radius: 999px;
    background: #f8fafc;
    padding: 0.35rem 0.58rem;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 600;
}

.guide-mini-chip .guide-store-logo {
    width: 1.25rem;
    height: 1.25rem;
    border: 0;
    border-radius: 0.25rem;
    padding: 0.1rem;
}

.guide-index-action {
    margin-top: auto;
    padding: 0 1.15rem 1.15rem;
}

.guide-index-action .guide-button {
    width: 100%;
}

.guide-faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    visibility: hidden;
}

.guide-faq-content.open {
    grid-template-rows: 1fr;
    visibility: visible;
}

.guide-faq-inner {
    overflow: hidden;
    min-height: 0;
}

.guide-link-inline {
    color: var(--guide-accent);
    font-weight: 700;
}

.guide-link-inline:hover {
    text-decoration: underline;
}

.guide-quote-positioner {
    align-items: center;
    padding-top: clamp(1.25rem, 7vh, 4.5rem);
    padding-bottom: clamp(1.25rem, 7vh, 4.5rem);
}

@media (max-width: 640px) {
    .guide-quote-positioner {
        align-items: flex-start;
        padding-top: clamp(4.25rem, 13svh, 6.75rem);
        padding-bottom: 1rem;
    }

    .guide-quote-positioner > div {
        max-height: calc(100svh - 5.25rem);
    }
}

@media (max-width: 1024px) {
    .guide-hero-grid,
    .guide-blueprint,
    .guide-mini-faq-grid,
    .guide-final-grid {
        grid-template-columns: 1fr;
    }

    .guide-blueprint-intro {
        position: static;
    }

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

    .guide-blueprint-card {
        padding: 1.15rem;
    }

    .guide-store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-flow-steps {
        --guide-flow-node: 5.7rem;
        grid-template-columns: 1fr;
        max-width: 40rem;
        gap: clamp(1.4rem, 4vw, 2rem);
    }

    .guide-flow-steps::before {
        left: calc(var(--guide-flow-node) / 2);
        right: auto;
        top: 0.5rem;
        bottom: 0.5rem;
        width: 2px;
        height: auto;
        background: repeating-linear-gradient(
            180deg,
            rgba(11, 71, 132, 0.34) 0 14px,
            transparent 14px 24px
        );
        opacity: 1;
    }

    .guide-flow-step {
        display: grid;
        grid-template-columns: var(--guide-flow-node) minmax(0, 1fr);
        gap: 1rem;
        align-items: center;
        min-height: 0;
        text-align: left;
        transform: none !important;
    }

    .guide-flow-step figure {
        width: var(--guide-flow-node);
        height: var(--guide-flow-node);
        aspect-ratio: 1;
    }

    .guide-flow-body {
        min-height: 0;
        align-items: flex-start;
        padding: 0;
        text-align: left;
    }

    .guide-flow-body span {
        position: relative;
        top: auto;
        left: auto;
        width: 2.35rem;
        height: 2.35rem;
        margin: 0 0 0.5rem;
        border: 3px solid #edf2f7;
        font-size: 0.95rem;
    }

    .guide-flow-body h3 {
        margin-top: 0;
        padding-left: 0;
        font-size: clamp(1.15rem, 4vw, 1.35rem);
    }

    .guide-flow-body p {
        max-width: none;
        margin-top: 0.4rem;
        padding-left: 0;
        font-size: 0.94rem;
    }
}

@media (max-width: 768px) {
    .guide-hero {
        padding: 3rem 0 2.5rem;
    }

    .guide-steps,
    .guide-store-grid,
    .guide-paths {
        grid-template-columns: 1fr;
    }

    .guide-blueprint-route {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 23rem;
    }

    .guide-blueprint-route::before {
        display: none;
    }

    .guide-final-character {
        max-width: min(15rem, 66vw);
    }

    .guide-compare-note {
        padding-left: 0;
    }

    .guide-photo {
        aspect-ratio: 4 / 3;
    }

    .guide-deck-shell {
        width: min(92%, 23.5rem);
    }

    .guide-deck-stage {
        height: clamp(13.5rem, 58vw, 18.5rem);
    }

    .guide-deck-note {
        max-width: min(92%, 23rem);
        margin-top: 1.2rem;
        font-size: 0.84rem;
    }

    .guide-use-band {
        padding: 3.25rem 0;
    }

    .guide-use-band .guide-section-head h2 {
        font-size: clamp(1.85rem, 8vw, 3rem);
    }

    .guide-flow-band {
        padding: 3.5rem 0;
    }

    .guide-flow-band .guide-section-head h2 {
        font-size: clamp(1.7rem, 7.2vw, 2.35rem);
        line-height: 1.08;
    }

    .guide-use-step {
        min-height: 11.5rem;
        padding: 1.1rem;
    }

    .guide-use-step .guide-step-index {
        font-size: 4rem;
        right: 0.85rem;
    }

    .guide-index-page #guides-grid {
        width: 100%;
        max-width: calc(100vw - 2rem);
        gap: 0.9rem;
    }

    .guide-index-card {
        display: grid;
        grid-template-columns: 7.2rem minmax(0, 1fr);
        grid-template-rows: auto auto;
        min-height: 0;
        border-radius: 0.95rem;
    }

    .guide-index-card::before {
        width: 3px;
        height: 100%;
        inset: 0 auto 0 0;
    }

    .guide-index-card:hover {
        transform: none;
    }

    .guide-index-image {
        grid-column: 1;
        grid-row: 1;
        height: 100%;
        min-height: 8.2rem;
        aspect-ratio: auto;
        border-right: 1px solid var(--guide-line);
    }

    .guide-index-body {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        padding: 0.95rem 1rem 0.7rem;
    }

    .guide-index-body .guide-kicker {
        font-size: 0.68rem;
    }

    .guide-index-body h3 {
        margin-top: 0.35rem;
        font-size: 1.02rem;
        line-height: 1.25;
    }

    .guide-index-body p {
        display: -webkit-box;
        margin-top: 0.45rem;
        overflow: hidden;
        font-size: 0.84rem;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .guide-index-chips {
        gap: 0.32rem;
        margin-top: 0;
        padding-top: 0.7rem;
    }

    .guide-mini-chip {
        max-width: 100%;
        padding: 0.28rem 0.48rem;
        font-size: 0.66rem;
    }

    .guide-mini-chip:nth-child(n + 3) {
        display: none;
    }

    .guide-index-action {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 0 0.85rem 0.85rem;
    }

    .guide-index-action .guide-button {
        min-height: 2.45rem;
    }
}

@media (max-width: 520px) {
    .guide-nav-row .guide-button-muted {
        display: none !important;
    }

    .guide-nav-row {
        position: relative;
        min-height: 4rem;
        gap: 0.6rem;
        overflow: hidden;
    }

    .guide-nav-row > a:first-child {
        min-width: 0;
    }

    .guide-nav-row > a:first-child img {
        max-width: min(10.2rem, 38vw);
        height: auto;
        max-height: 2rem;
    }

    .guide-button {
        min-height: 2.55rem;
        padding: 0.64rem 0.68rem;
        font-size: 0.76rem;
    }

    .guide-nav-row .guide-button-light {
        position: absolute;
        right: 0;
        top: 50%;
        flex: 0 0 auto;
        width: 2.75rem;
        padding-inline: 0;
        font-size: 0;
        transform: translateY(-50%);
    }

    .guide-nav-row .guide-button-light i {
        display: block;
        width: 1rem;
        height: 1rem;
    }

    .guide-hero-grid {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .guide-hero h1 {
        width: min(100%, 20.75rem);
        max-width: min(100%, calc(100vw - 3.5rem));
        font-size: clamp(1.28rem, 5.25vw, 1.56rem);
        line-height: 1.05;
        text-wrap: initial;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .guide-hero-copy {
        width: min(100%, 20.75rem);
        max-width: min(100%, calc(100vw - 3.5rem));
        font-size: 0.9rem;
        line-height: 1.58;
        text-wrap: initial;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .guide-tags,
    .guide-hero-actions,
    .guide-photo {
        width: min(100%, calc(100vw - 3rem));
        max-width: calc(100vw - 3rem);
    }

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

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

    .guide-flow-steps {
        --guide-flow-node: 4.85rem;
        width: min(100%, calc(100vw - 2rem));
        max-width: calc(100vw - 2rem);
        gap: 1.35rem;
    }

    .guide-flow-steps::before {
        display: block;
        left: calc(var(--guide-flow-node) / 2);
        top: 0.25rem;
        bottom: 0.25rem;
        width: 2px;
    }

    .guide-flow-step {
        display: grid;
        grid-template-columns: var(--guide-flow-node) minmax(0, 1fr);
        width: 100%;
        gap: 0.85rem;
        min-height: 0;
    }

    .guide-flow-step figure {
        width: var(--guide-flow-node);
        height: var(--guide-flow-node);
        aspect-ratio: 1;
    }

    .guide-flow-body {
        padding: 0;
        min-width: 0;
        max-width: min(100%, 14.5rem);
    }

    .guide-flow-body span {
        width: 2.15rem;
        height: 2.15rem;
        margin-bottom: 0.45rem;
        border-radius: 999px;
        font-size: 0.9rem;
    }

    .guide-flow-body h3,
    .guide-flow-body p {
        padding-left: 0;
        text-wrap: initial;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .guide-flow-body h3 {
        margin-top: 0;
        font-size: 1.08rem;
    }

    .guide-flow-body p {
        margin-top: 0.35rem;
        max-width: 100%;
        font-size: 0.88rem;
    }

    .guide-blueprint,
    .guide-mini-faq-grid,
    .guide-blueprint-grid {
        width: min(100%, calc(100vw - 3rem));
        max-width: calc(100vw - 3rem);
    }

    .guide-blueprint-intro h2,
    .guide-mini-faq-copy h2 {
        max-width: min(100%, 20.75rem);
        font-size: clamp(1.55rem, 6.6vw, 2rem);
        overflow-wrap: break-word;
    }

    .guide-blueprint-intro p,
    .guide-mini-faq-copy p {
        max-width: min(100%, 20.75rem);
    }

    .guide-blueprint-card,
    .guide-faq-item {
        border-radius: 0.95rem;
    }

    .guide-deck-shell {
        width: min(90%, 20.5rem);
    }

    .guide-deck-stage {
        height: clamp(12.5rem, 54vw, 16rem);
    }

    .guide-index-card {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 5.25rem minmax(0, 1fr);
    }

    .guide-index-image {
        min-height: 6.8rem;
    }

    .guide-index-body {
        padding: 0.82rem 0.86rem 0.62rem;
        overflow: hidden;
    }

    .guide-index-body h3 {
        font-size: 0.96rem;
        overflow-wrap: anywhere;
    }

    .guide-index-body p {
        font-size: 0.8rem;
        overflow-wrap: anywhere;
    }

    .guide-index-chips {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .guide-deck-card {
        animation: none;
        transition-duration: 0.01ms;
    }
}
