

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
    font-synthesis: none;
}


body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow: hidden;
    overscroll-behavior: none;
    background-color: var(--ink-900);
    background-image:
        radial-gradient(
            circle 60vw at 70% 20%,
            rgba(224, 122, 30, 0.05),
            rgba(224, 122, 30, 0) 70%
        ),
        linear-gradient(180deg, var(--ink-900) 0%, var(--ink-800) 100%);
    background-attachment: fixed;
    color: var(--paper-50);
    font-family: var(--font-body);
}

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

:root {
    
    --ink-900: #1b3f7c;
    --ink-800: #204487;
    --ink-700: #2d5daa;

    
    --amber-700: #c66614;
    --amber-600: #e07a1e;
    --amber-500: #ee8412;

    
    --gold-500: #f6d144;
    --gold-600: #fbb03b;

    
    --paper-50: #edf3f8;
    --paper-100: #d6e4ed;

    --font-heading:
        "Chiron Sung HK", "Noto Serif TC", "Source Han Serif TC", serif;
    --font-body:
        "Noto Sans TC", "Source Han Sans TC", "PingFang TC", -apple-system,
        "system-ui", sans-serif;
    --font-latin: "Fraunces", Georgia, serif;

    --r-card: 6px;

    
    --shadow-print: 4px 4px 0 var(--ink-900);
    --shadow-print-lg: 6px 6px 0 var(--ink-900);

    --ease-fg: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-pop: cubic-bezier(0.34, 1.56, 0.64, 1);
}



.atmosphere {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.viewport {
    position: fixed;
    inset: 0;
    z-index: 1;
    touch-action: none;
    cursor: grab;
    overflow: hidden;
}

.viewport.is-grabbing {
    cursor: grabbing;
}


.world {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    will-change: transform;
}



.edges {
    position: absolute;
    max-width: none;
    overflow: visible;
    pointer-events: none;
}

.edge path {
    fill: none;
    stroke: var(--paper-100);
    stroke-width: 2;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
    opacity: 0.28;
    transition: opacity 240ms ease, stroke-width 240ms ease;
}


.edge--trigger path {
    stroke-dasharray: 10 8;
    opacity: 0.45;
}

.edge--flow path {
    stroke: var(--amber-500);
    stroke-width: 2.5;
    opacity: 0.85;
}

.edge.is-active path {
    opacity: 1;
    stroke-width: 4;
}


.edge__label {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 500;
    fill: var(--paper-100);
    paint-order: stroke;
    stroke: var(--ink-900);
    stroke-width: 10px;
    stroke-linejoin: round;
    opacity: 0.75;
}

.edge.is-active .edge__label {
    fill: var(--paper-50);
    opacity: 1;
}



.node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 402px;
    cursor: pointer;
    outline: none;
}


.node__phone {
    position: relative;
    width: 402px;
    height: 874px;
    border-radius: var(--r-card);
    overflow: hidden;
    background: var(--paper-50);
    border: 4px solid var(--ink-900);
    box-shadow: var(--shadow-print);
    transition:
        box-shadow 240ms var(--ease-pop),
        border-color 240ms var(--ease-pop),
        transform 240ms var(--ease-pop);
}

.node__shot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.node.is-current .node__phone {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-print-lg);
    transform: translateY(-8px);
}

.node:focus-visible .node__phone {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-print-lg);
}


.node__card {
    width: 402px;
    margin-top: 28px;
    padding: 0 8px;
}

.node__step {
    margin: 0 0 10px;
    font-family: var(--font-latin);
    font-size: 15px;
    letter-spacing: 0.18em;
    color: rgba(237, 243, 248, 0.55);
}

.node__title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0.01em;
    color: var(--paper-50);
}

.node__body {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(214, 228, 237, 0.82);
}


.node__aside {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(214, 228, 237, 0.18);
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.18em;
    color: rgba(214, 228, 237, 0.7);
}


body[data-zoom="far"] .node__card,
body[data-zoom="far"] .edge__label {
    opacity: 0;
    pointer-events: none;
}

body[data-zoom="mid"] .node__body,
body[data-zoom="mid"] .node__aside {
    display: none;
}

.node__card,
.edge__label {
    transition: opacity 260ms ease;
}



.node__pin {
    position: absolute;
    left: 50%;
    top: 892px;
    transform: translate(-50%, 24px);
    margin: 0;
    padding: calc(7px / var(--camera-scale, 1)) calc(13px / var(--camera-scale, 1));
    white-space: nowrap;
    border-radius: 999px;
    background: rgba(27, 63, 124, 0.86);
    border: 1px solid rgba(214, 228, 237, 0.22);
    font-family: var(--font-heading);
    font-size: calc(12px / var(--camera-scale, 1));
    font-weight: 700;
    color: var(--paper-50);
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

body[data-zoom="far"] .node__pin {
    opacity: 1;
}

body[data-zoom="far"] .node.is-current .node__pin {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--ink-900);
}



.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    padding-top: max(18px, env(safe-area-inset-top));
    pointer-events: none;
}

.topbar > * {
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(27, 63, 124, 0.72);
    border: 1px solid rgba(214, 228, 237, 0.16);
    backdrop-filter: blur(12px);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--paper-50);
}

.brand small {
    font-family: var(--font-latin);
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(214, 228, 237, 0.55);
}

.topbar__actions {
    display: flex;
    gap: 8px;
}

.pill {
    padding: 11px 18px;
    border-radius: 999px;
    background: rgba(27, 63, 124, 0.72);
    border: 1px solid rgba(214, 228, 237, 0.16);
    backdrop-filter: blur(12px);
    font-size: 15px;
    font-weight: 500;
    color: var(--paper-50);
    transition: background 200ms ease, color 200ms ease;
}

.pill:hover {
    background: rgba(45, 93, 170, 0.82);
}

.pill[aria-pressed="true"] {
    background: var(--paper-50);
    border-color: var(--paper-50);
    color: var(--ink-900);
}

.pill--cta {
    background: var(--gold-600);
    border-color: var(--gold-600);
    color: var(--ink-900);
    font-weight: 700;
}

.pill--cta:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
}

@media (max-width: 720px) {
    .brand small {
        display: none;
    }

    .node__title {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}




.faq {
    display: none;
}

.faq[data-visible="true"] {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 30;
    background: var(--ink-900);
}

.faq__bar {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 18px 24px 14px;
    padding-top: max(18px, env(safe-area-inset-top));
    border-bottom: 1px solid rgba(214, 228, 237, 0.16);
}

.faq__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--paper-50);
}

.faq__close {
    flex: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    
    border: 1px solid rgba(214, 228, 237, 0.44);
    background: rgba(237, 243, 248, 0.06);
    font-size: 22px;
    line-height: 1;
    color: var(--paper-50);
    cursor: pointer;
}

.faq__body {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    max-width: 46rem;
    margin: 0 auto;
    padding: 8px 24px;
    padding-bottom: max(32px, env(safe-area-inset-bottom));
}

.faq__item {
    border-bottom: 1px solid rgba(237, 243, 248, 0.16);
}

.faq__q {
    padding: 18px 32px 18px 0;
    position: relative;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.6;
    color: var(--paper-50);
    cursor: pointer;
    list-style: none;
}


.faq__q::-webkit-details-marker {
    display: none;
}


.faq__q::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    background:
        linear-gradient(var(--paper-50), var(--paper-50)) center/14px 1.5px no-repeat,
        linear-gradient(var(--paper-50), var(--paper-50)) center/1.5px 14px no-repeat;
}

.faq__item[open] .faq__q::after {
    background:
        linear-gradient(var(--paper-50), var(--paper-50)) center/14px 1.5px no-repeat;
}

.faq__a {
    margin: 0 0 20px;
    padding-right: 32px;
    font-size: 15.5px;
    line-height: 1.9;
    color: rgba(237, 243, 248, 0.92);
}

.faq__more {
    margin: 26px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(237, 243, 248, 0.7);
}

.faq__more a {
    color: var(--gold-500, #f6d144);
}


.outro__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}


.stopindex__faq {
    display: none;
}

@media (max-width: 720px) {
    .pill--faq {
        display: none;
    }

    .stopindex__faq {
        display: block;
        grid-column: 1 / -1;
        padding: 14px;
        border-radius: 14px;
        border: 1px solid rgba(214, 228, 237, 0.44);
        background: rgba(237, 243, 248, 0.06);
        font-size: 15px;
        color: var(--paper-50);
        cursor: pointer;
    }

    .faq__title {
        font-size: 19px;
    }

    .faq__q {
        font-size: 16.5px;
    }

    .faq__a {
        font-size: 15px;
    }

    .faq__body {
        padding-left: 18px;
        padding-right: 18px;
    }
}




.brand {
    padding: 10px 18px;
    flex-shrink: 0;
}


.brand img {
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: 26px;
}

@media (max-width: 720px) {
    .brand {
        padding: 8px 14px;
    }

    .brand img {
        height: 22px;
    }
}


@media (max-width: 560px) {
    .topbar {
        gap: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .topbar__actions {
        gap: 6px;
    }

    .brand {
        padding: 7px 11px;
    }

    .brand img {
        height: 18px;
    }

    .pill {
        padding: 9px 12px;
        font-size: 13px;
    }
}




.outro {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 32px 24px;
    background: rgba(27, 63, 124, 0.92);
    backdrop-filter: blur(18px);
    opacity: 1;
    transition: opacity 420ms ease;
}

.outro[data-visible="false"] {
    opacity: 0;
    pointer-events: none;
}

.outro__line {
    max-width: 22em;
    margin: 0;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.6;
    color: var(--paper-50);
}

.outro__stores {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.outro__badge img {
    height: 48px;
    width: auto;
}

.outro__again {
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(237, 243, 248, 0.35);
    font-size: 15px;
    color: var(--paper-50);
}

@media (max-width: 720px) {
    .outro__line {
        font-size: 21px;
    }
}




.pill,
.brand {
    white-space: nowrap;
    text-decoration: none;
}



.detail {
    position: fixed;
    z-index: 12;
    left: 16px;
    right: 16px;
    bottom: calc(24px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    max-height: 56vh;
    padding: 16px 20px 18px;
    border-radius: 18px;
    background: rgba(27, 63, 124, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-card);
    opacity: 1;
    transition: opacity 260ms ease, transform 260ms ease;
}

.detail[data-visible="false"] {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}


.detail__grip {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}


.detail__arrow {
    position: relative;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: none;
    color: var(--paper-50);
    cursor: pointer;
    transition: background 160ms ease, opacity 200ms ease;
}


.detail__arrow::after {
    content: "";
    position: absolute;
    inset: -10px;
}

.detail__arrow:active:not(:disabled) {
    background: rgba(244, 239, 230, 0.08);
    box-shadow: 0 0 0 6px rgba(244, 239, 230, 0.08);
}

.detail__arrow:disabled {
    opacity: 0.35;
    cursor: default;
}


.detail__arrowtext,
.detail__handletext {
    display: none;
}


.detail__handle {
    display: none;
}


.detail__read {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}


.detail__step {
    margin: 0 0 6px;
    font-family: var(--font-latin);
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.2em;
    color: var(--gold-500, #f6d144);
}


.detail__total {
    
    color: rgba(237, 243, 248, 0.62);
}

.detail__title {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.35;
    color: var(--paper-50);
}

.detail__instruction {
    display: none;
    margin: -2px 0 12px;
    padding: 8px 10px;
    border-left: 3px solid var(--gold-500);
    border-radius: 0 8px 8px 0;
    background: rgba(246, 209, 68, 0.12);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--paper-50);
}

.detail[data-guided="true"] .detail__instruction {
    display: block;
}

.detail__body {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(237, 243, 248, 0.92);
}


.detail__cadence {
    margin: 14px 0 0;
    padding: 13px 14px;
    border: 1px solid rgba(237, 243, 248, 0.24);
    border-radius: 12px;
    background: rgba(244, 239, 230, 0.08);
}


.detail__cadence[hidden] {
    display: none;
}

.detail__cadence-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
    color: var(--paper-50);
}

.detail__cadence-flow {
    display: grid;
    gap: 12px;
    margin: 12px 0;
    padding: 0 0 0 14px;
    border-left: 1px solid rgba(246, 209, 68, 0.7);
    list-style: none;
}

.detail__cadence-event {
    position: relative;
}

.detail__cadence-event::before {
    content: "";
    position: absolute;
    top: 6px;
    left: -18px;
    width: 7px;
    height: 7px;
    border: 2px solid var(--ink-900);
    border-radius: 50%;
    background: var(--gold-500);
}

.detail__cadence-label,
.detail__cadence-event-title,
.detail__cadence-event-body,
.detail__cadence-conclusion {
    margin: 0;
}

.detail__cadence-label {
    margin-bottom: 2px;
    font-family: var(--font-latin);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--gold-500);
}

.detail__cadence-event-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    color: var(--paper-50);
}

.detail__cadence-event-body {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(237, 243, 248, 0.84);
}

.detail__cadence-conclusion {
    padding-top: 10px;
    border-top: 1px solid rgba(237, 243, 248, 0.2);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--paper-50);
}

.detail__aside {
    margin: 14px 0 0;
    padding-top: 12px;
    border-top: 1px solid rgba(237, 243, 248, 0.22);
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: rgba(237, 243, 248, 0.86);
}



.guide {
    position: fixed;
    inset: 0;
    z-index: 11;
    pointer-events: none;
}

.guide[data-visible="false"] {
    visibility: hidden;
}

.guide__target {
    position: fixed;
    display: block;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
}

.guide__outline {
    position: absolute;
    left: var(--guide-outline-left);
    top: var(--guide-outline-top);
    width: var(--guide-outline-width);
    height: var(--guide-outline-height);
    box-sizing: border-box;
    border: 2px solid var(--gold-500);
    border-radius: 12px;
    background: rgba(246, 209, 68, 0.14);
    box-shadow:
        0 0 0 3px rgba(27, 63, 124, 0.72),
        0 8px 24px rgba(10, 26, 54, 0.32);
    pointer-events: none;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease,
        opacity 120ms ease;
}

.guide__target:hover .guide__outline {
    border-color: var(--paper-50);
    background: rgba(246, 209, 68, 0.24);
}

.guide__target:focus-visible {
    outline: 3px solid var(--paper-50);
    outline-offset: 4px;
}

.guide__target:active .guide__outline,
.guide__target[data-pressed="true"] .guide__outline {
    background: rgba(246, 209, 68, 0.36);
    box-shadow:
        0 0 0 5px rgba(246, 209, 68, 0.22),
        0 5px 14px rgba(10, 26, 54, 0.2);
}

.guide__target.is-new .guide__outline {
    animation: guide-target-arrive 380ms var(--ease-fg) 2;
}

.guide__label {
    position: absolute;
    left: var(--guide-outline-center);
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--gold-500);
    box-shadow: 0 3px 10px rgba(10, 26, 54, 0.28);
    color: var(--ink-900);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
}

@keyframes guide-target-arrive {
    0% {
        opacity: 0.35;
        transform: scale(0.92);
    }
    60% {
        opacity: 1;
        transform: scale(1.03);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .guide__target {
        transition: none;
    }

    .guide__target.is-new .guide__outline {
        animation: none;
    }
}


@media (min-width: 721px) {
    .detail__grip {
        order: 1;
        justify-content: flex-end;
        gap: 16px;
        margin-top: 16px;
    }

    
    .detail__arrow {
        width: 52px;
        height: 52px;
        border: 1.5px solid rgba(237, 243, 248, 0.55);
        background: rgba(244, 239, 230, 0.06);
        transition:
            background 180ms ease,
            border-color 180ms ease,
            transform 180ms ease,
            opacity 200ms ease;
    }

    .detail__arrow::after {
        inset: 0;
    }

    .detail__arrow svg {
        width: 26px;
        height: 26px;
        stroke-width: 1.6;
    }

    .detail__arrow:hover:not(:disabled) {
        background: rgba(244, 239, 230, 0.14);
        border-color: var(--paper-50);
    }

    .detail__arrow:active:not(:disabled) {
        box-shadow: none;
        transform: scale(0.96);
    }
}

@media (min-width: 900px) {
    .detail {
        left: auto;
        right: 28px;
        width: 380px;
    }

    .detail__title {
        font-size: 27px;
    }

    .detail__body {
        font-size: 16px;
    }
}


.node__card {
    display: none;
}




@media (max-width: 720px) {
    .detail {
        left: 0;
        right: 0;
        bottom: 0;
        
        min-height: 20dvh;
        max-height: 20dvh;
        padding: 4px 18px calc(8px + env(safe-area-inset-bottom));
        border-radius: 20px 20px 0 0;
        background: var(--ink-900);
        box-shadow: 0 -14px 34px rgba(10, 26, 54, 0.45);
        transition:
            max-height 300ms cubic-bezier(0.22, 0.7, 0.2, 1),
            opacity 260ms ease,
            transform 260ms ease;
    }

    
    .detail[data-expanded="true"] {
        max-height: 56dvh;
    }

    
    .detail[data-visible="false"] {
        display: none;
    }

    
    
    .detail__grip {
        gap: 8px;
        margin-bottom: 8px;
    }

    .detail__arrow {
        flex: 1;
        min-width: 0;
        gap: 6px;
        width: auto;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(237, 243, 248, 0.44);
        background: rgba(244, 239, 230, 0.1);
    }

    
    .detail__arrow::after {
        inset: 0;
    }

    .detail__arrow:active:not(:disabled) {
        background: rgba(244, 239, 230, 0.2);
        box-shadow: none;
    }

    .detail__arrow svg {
        width: 20px;
        height: 20px;
    }

    .detail__arrowtext {
        display: inline;
        font-size: 15px;
        line-height: 1;
        color: var(--paper-50);
    }

    
    .detail__handle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        flex: none;
        width: 76px;
        height: 44px;
        padding: 0;
        border-radius: 12px;
        border: 1px solid rgba(237, 243, 248, 0.44);
        background: rgba(244, 239, 230, 0.1);
        color: var(--paper-50);
        cursor: pointer;
    }

    .detail__handle:active {
        background: rgba(244, 239, 230, 0.2);
    }

    .detail__handle svg {
        width: 16px;
        height: 16px;
        transition: transform 200ms ease;
    }

    
    .detail[data-expanded="true"] .detail__handle svg {
        transform: rotate(180deg);
    }

    .detail__handletext {
        display: inline;
        font-size: 13px;
        line-height: 1;
    }

    .detail__step {
        margin: 0;
        font-size: 12px;
    }

    .detail__title {
        margin: 0;
        font-size: 21px;
    }

    .detail__body {
        font-size: 14.5px;
        line-height: 1.75;
    }

    .detail__aside {
        margin-top: 12px;
        padding-top: 10px;
    }

    
    .detail:not([data-expanded="true"]) .detail__read {
        overflow: hidden;
    }

    .detail:not([data-expanded="true"]) .detail__body {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    
    .detail:not([data-expanded="true"]) .detail__cadence {
        display: none;
    }

    .detail__cadence {
        margin-top: 12px;
        padding: 12px;
    }

    .detail__cadence-title {
        font-size: 15px;
    }

    .detail__cadence-flow {
        gap: 10px;
        margin: 10px 0;
    }

    
    .detail:not([data-expanded="true"])[data-guided="true"] .detail__body {
        display: none;
    }

    .detail__instruction {
        margin: 2px 0 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        font-size: 14px;
        line-height: 1.5;
        color: var(--gold-500);
    }

    
    .detail:not([data-expanded="true"]) .detail__aside {
        display: none;
    }
}




.stopindex {
    display: none;
}

@media (max-width: 720px) {
    .stopindex[data-visible="true"] {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        z-index: 24;
        background: var(--ink-900);
    }

    .stopindex__bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 18px 12px;
        padding-top: max(16px, env(safe-area-inset-top));
        border-bottom: 1px solid rgba(214, 228, 237, 0.16);
    }

    .stopindex__title {
        margin: 0;
        font-family: var(--font-heading);
        font-size: 18px;
        color: var(--paper-50);
    }

    .stopindex__close {
        flex: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(214, 228, 237, 0.2);
        background: rgba(237, 243, 248, 0.06);
        font-size: 22px;
        line-height: 1;
        color: var(--paper-50);
    }

    .stopindex__grid {
        flex: 1;
        overflow-y: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 16px 18px;
        padding-bottom: max(24px, env(safe-area-inset-bottom));
    }

    .stopcard {
        display: grid;
        grid-template-rows: auto auto auto;
        gap: 6px;
        padding: 0;
        border: none;
        background: none;
        text-align: left;
        cursor: pointer;
    }

    
    .stopcard__shot {
        width: 100%;
        height: 150px;
        object-fit: cover;
        object-position: top;
        border-radius: 12px;
        border: 2px solid var(--gold-500, #f6d144);
    }

    .stopcard__step {
        font-family: var(--font-latin);
        font-size: 12px;
        letter-spacing: 0.2em;
        color: var(--gold-500, #f6d144);
    }

    
    .stopcard__title {
        min-height: 2.9em;
        font-family: var(--font-heading);
        font-size: 15px;
        line-height: 1.45;
        color: var(--paper-50);
    }
}
