:root
{
    --grid: #0b1220;
    --line: #dfe5f0;
    --thin: #ffffff;
    --lead: #ffb300;
    --fill: #111111;
    --head: #d99700;
    --edge: #070b16;
    --warm: #ffffff;
    --flat: color-mix(in srgb, var(--line) 6%, var(--grid));
    --tone: color-mix(in srgb, var(--line) 3%, var(--grid));
    --card: color-mix(in srgb, var(--line) 18%, var(--grid));
    --soft: color-mix(in srgb, var(--line) 68%, var(--grid));
    --band: 1160px;
    --bold: 78ch;
    --dim: 14px;
    --base: 8px;
    --frame: 0 2px 4px rgb(0 0 0 / 10%), 0 16px 40px rgb(0 0 0 / 16%);
    --stroke: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
    --plain: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
    --brand: clamp(1.4rem, 1.24rem + 0.75vw, 1.95rem);
    --zone: clamp(1.95rem, 1.5rem + 1.9vw, 3.1rem);
}
*, *::after, *::before
{
    box-sizing: border-box;
}
body
{
    margin: 0;
    background: var(--grid);
    color: var(--line);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: var(--stroke);
    line-height: 1.65;
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
}
img
{
    max-width: 100%;
    height: auto;
    display: block;
}
a
{
    color: inherit;
}
.board
{
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--edge);
    color: var(--warm);
}
.band__large, .wrap__wide, .board__light, .chunk__less, .sheet__info
{
    width: min(100% - 2rem, var(--band));
    margin-inline: auto;
}
.board__light
{
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 60px;
    padding-block: 0.5rem;
}
.record
{
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}
.record img
{
    height: 32px;
    width: auto;
    object-fit: contain;
}
.plate
{
    display: flex;
    gap: 0.15rem;
    margin-inline-end: auto;
    min-width: 0;
}
.plate a
{
    padding: 0.4rem 0.7rem;
    border-radius: var(--base);
    text-decoration: none;
    color: inherit;
    opacity: 0.82;
    white-space: nowrap;
    font-size: 0.92rem;
}
.plate a:hover
{
    background: color-mix(in srgb, var(--warm) 14%, transparent);
    opacity: 1;
}
.plate:empty
{
    display: none;
}
.plate:empty + .board__wide
{
    margin-inline-start: auto;
}
.board__wide
{
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}
.holder
{
    display: none;
    position: relative;
    flex-shrink: 0;
}
.holder__thumb
{
    list-style: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--warm) 40%, transparent);
    border-radius: var(--base);
}
.holder__thumb::-webkit-details-marker
{
    display: none;
}
.holder__thumb span::after, .holder__thumb span::before, .holder__thumb span
{
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
.holder__thumb span
{
    position: relative;
}
.holder__thumb span::before
{
    position: absolute;
    top: -6px;
}
.holder__thumb span::after
{
    position: absolute;
    top: 6px;
}
.holder__last
{
    position: absolute;
    inset-inline-end: 0;
    top: calc(100% + 0.5rem);
    z-index: 25;
    min-width: 14rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem;
    background: var(--edge);
    border: 1px solid color-mix(in srgb, var(--warm) 20%, transparent);
    border-radius: var(--dim);
    box-shadow: var(--frame);
}
.holder__last a
{
    padding: 0.6rem 0.7rem;
    border-radius: var(--base);
    text-decoration: none;
    color: var(--warm);
}
.holder__last a:hover
{
    background: color-mix(in srgb, var(--warm) 12%, transparent);
}
.holder__last .ribbon
{
    margin-top: 0.4rem;
    color: var(--warm);
    border-color: color-mix(in srgb, var(--warm) 40%, transparent);
}
.board .ribbon_bold
{
    color: inherit;
    border-color: color-mix(in srgb, var(--warm) 45%, transparent);
}
.board .ribbon_bold:hover
{
    background: color-mix(in srgb, var(--warm) 14%, transparent);
}
.sheet
{
    background: color-mix(in srgb, var(--warm) 8%, var(--edge));
    border-top: 1px solid color-mix(in srgb, var(--warm) 12%, transparent);
    font-size: 0.9rem;
}
.sheet__info
{
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
}
.sheet__info::-webkit-scrollbar
{
    display: none;
}
.sheet a
{
    padding: 0.55rem 0.7rem;
    text-decoration: none;
    color: var(--warm);
    opacity: 0.8;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}
.sheet a:hover
{
    opacity: 1;
    border-bottom-color: var(--lead);
}
.ribbon
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid var(--round, transparent);
    border-radius: var(--base);
    padding: 0.6rem 1.1rem;
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    background: var(--lead);
    color: var(--fill);
    transition: background-color 0.15s ease, transform 0.05s ease;
}
.ribbon:hover
{
    background: var(--head);
}
.ribbon:active
{
    transform: translateY(1px);
}
.ribbon_bold
{
    background: transparent;
    color: var(--thin);
    border-color: var(--card);
}
.ribbon_bold:hover
{
    background: var(--flat);
}
.ribbon_line
{
    padding: 0.9rem 1.8rem;
    font-size: var(--plain);
}
:focus-visible
{
    outline: 2px solid var(--lead);
    outline-offset: 2px;
}
.well h2, .case h3, .wrap__edge, .well h3, .article, .case h2
{
    color: var(--thin);
    line-height: 1.18;
    letter-spacing: -0.02em;
    text-wrap: balance;
}
.article
{
    font-size: var(--zone);
    margin: 0 0 1rem;
}
.wrap__edge
{
    font-size: var(--brand);
    margin: 0 0 1.25rem;
}
.well h3, .case h3
{
    font-size: var(--plain);
    margin: 1.75rem 0 0.5rem;
}
.case p, .well p
{
    margin: 0 0 1rem;
}
.well > :last-child, .case > :last-child
{
    margin-bottom: 0;
}
.well a, .case a
{
    color: color-mix(in srgb, var(--lead) 72%, var(--thin));
    text-underline-offset: 3px;
}
.promo
{
    display: block;
}
.wrap
{
    padding-block: clamp(2rem, 1.4rem + 2vw, 3.5rem);
    scroll-margin-top: 72px;
}
.promo > .wrap:not(.chunk):nth-of-type(odd)
{
    background: var(--flat);
}
.case
{
    max-width: var(--bold);
}
.wrap_list .case ul
{
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    gap: 0.5rem;
}
.wrap_list .case ul > li
{
    position: relative;
    padding-inline-start: 1.9rem;
    padding-block: 0.15rem;
}
.wrap_list .case ul > li::before
{
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55em;
    width: 0.75rem;
    height: 0.4rem;
    border-inline-start: 2px solid var(--lead);
    border-bottom: 2px solid var(--lead);
    transform: rotate(-45deg);
}
.wrap_list .case ol
{
    counter-reset: step;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}
.wrap_list .case ol > li
{
    counter-increment: step;
    position: relative;
    padding-inline-start: 2.6rem;
}
.wrap_list .case ol > li::before
{
    content: counter(step);
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: var(--lead);
    color: var(--fill);
    font-weight: 700;
    font-size: 0.9rem;
    display: grid;
    place-items: center;
}
.note
{
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--card);
    border-inline-start: 3px solid var(--soft);
    border-radius: 0 var(--base) var(--base) 0;
    background: var(--flat);
    font-size: 0.95rem;
}
.note p
{
    margin: 0 0 0.6rem;
}
.note > :last-child
{
    margin-bottom: 0;
}
.note strong
{
    color: var(--thin);
}
.note--disclosure
{
    color: var(--soft);
    font-size: 0.88rem;
    background: transparent;
    border-inline-start-color: var(--card);
}
.note--warning
{
    border-inline-start-color: var(--lead);
    background: color-mix(in srgb, var(--lead) 10%, var(--grid));
}
.note--takeaway
{
    font-variant-numeric: tabular-nums;
    border-inline-start-color: var(--thin);
}
.note--rg
{
    border: 1px solid color-mix(in srgb, var(--thin) 30%, var(--card));
    border-radius: var(--dim);
    background: var(--tone);
}
.note--rg a
{
    font-weight: 600;
}
.note--independent
{
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--soft);
    background: transparent;
    border: 0;
    border-top: 1px solid var(--card);
    border-radius: 0;
    padding: 1rem 0 0;
}
.well blockquote, .case blockquote
{
    margin: 1.25rem 0;
    padding: 1rem 1.25rem;
    border-inline-start: 3px solid var(--lead);
    border-radius: 0 var(--base) var(--base) 0;
    background: var(--flat);
    color: var(--soft);
    font-size: 0.95rem;
}
.case blockquote p, .well blockquote p
{
    margin: 0 0 0.6rem;
}
.well blockquote > :last-child, .case blockquote > :last-child
{
    margin-bottom: 0;
}
.case blockquote strong, .well blockquote strong
{
    color: var(--thin);
}
.case hr
{
    border: 0;
    border-top: 1px solid var(--card);
    margin: 2rem 0;
}
.case table
{
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    background: var(--tone);
    border: 1px solid var(--card);
    border-radius: var(--dim);
    overflow: hidden;
}
.wrap_table .case
{
    max-width: none;
    overflow-x: auto;
}
.case th, .case td
{
    border-bottom: 1px solid var(--card);
    padding: 0.7rem 0.9rem;
    text-align: start;
    vertical-align: top;
}
.case caption
{
    caption-side: top;
    text-align: start;
    padding: 0 0 0.6rem;
    font-weight: 700;
    color: var(--thin);
}
.case thead th
{
    background: color-mix(in srgb, var(--lead) 16%, var(--flat));
    color: var(--thin);
    font-weight: 700;
    white-space: nowrap;
}
.case tbody tr:last-child td
{
    border-bottom: 0;
}
.case tbody tr:nth-child(even)
{
    background: color-mix(in srgb, var(--line) 3%, transparent);
}
.tile
{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
    gap: 2rem;
    align-items: start;
}
.tile__link
{
    border: 1px solid var(--card);
    border-radius: var(--dim);
    box-shadow: var(--frame);
    width: 100%;
}
.chunk
{
    position: relative;
    padding-block: clamp(2rem, 1.2rem + 3vw, 4rem);
    background: var(--edge);
    isolation: isolate;
}
.chunk::before
{
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 82%)), var(--ink, none);
    background-size: cover;
    background-position: center;
}
.entry__plain
{
    margin-top: 1.25rem;
    text-align: center;
}
.entry__plain a
{
    color: var(--lead);
    font-weight: 600;
}
.deck
{
    text-align: center;
}
.deck__bottom
{
    font-size: clamp(3.5rem, 12vw, 6rem);
    line-height: 1;
    font-weight: 800;
    color: var(--lead);
    margin-bottom: 0.5rem;
}
.deck__side
{
    max-width: 46ch;
    margin-inline: auto;
    color: var(--soft);
}
.deck__dark
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.75rem;
}
@media (max-width: 700px) {
    .chunk::before
    {
        background-image: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 82%)), var(--foot, var(--ink, none));
    }
}
.chunk__less
{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 22rem);
    grid-template-areas: "title offer" "text offer";
    align-content: start;
    gap: 0 2rem;
}
.chunk .article
{
    grid-area: title;
    color: #ffffff;
}
.chunk__open
{
    grid-area: text;
    color: #f2f4f8;
    max-width: 62ch;
}
.chunk .well
{
    margin-bottom: 1.5rem;
}
.chunk__alt
{
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    opacity: 0.75;
}
.summary
{
    grid-area: offer;
    background: var(--grid);
    border: 1px solid color-mix(in srgb, var(--lead) 40%, var(--card));
    border-radius: var(--dim);
    box-shadow: var(--frame);
    overflow: hidden;
    align-self: start;
}
.summary .ribbon
{
    width: 100%;
}
.summary__edge
{
    display: grid;
    place-items: center;
    min-height: 74px;
    padding: 0.9rem 1.25rem;
    background: color-mix(in srgb, var(--lead) 22%, var(--grid));
    color: var(--thin);
    border-bottom: 3px solid var(--lead);
}
.summary__edge img
{
    height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}
.summary__shut
{
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.25rem;
    text-align: center;
}
.summary__on
{
    font-weight: 800;
    font-size: var(--plain);
    color: inherit;
    text-align: center;
}
.summary__stub
{
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--soft);
    margin: 0;
}
.summary__first
{
    font-size: var(--brand);
    font-weight: 800;
    line-height: 1.15;
    color: var(--thin);
    margin: 0;
    text-wrap: balance;
}
.summary__last
{
    font-size: 0.8rem;
    color: var(--soft);
    margin: 0;
}
.chip
{
    padding-block: 1.5rem;
}
.figure
{
    border: 1px solid var(--card);
    border-radius: var(--dim);
    background: var(--tone);
    padding: 0.5rem 1.1rem;
}
.figure__soft
{
    cursor: pointer;
    font-weight: 700;
    color: var(--thin);
    padding-block: 0.6rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.figure__soft::-webkit-details-marker
{
    display: none;
}
.figure__soft::before
{
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-inline-end: 2px solid var(--lead);
    border-bottom: 2px solid var(--lead);
    transform: rotate(45deg);
    transition: transform 0.15s ease;
}
.figure[open] .figure__soft::before
{
    transform: rotate(-135deg);
}
.figure__cell
{
    columns: 2;
    gap: 2rem;
    margin: 0 0 0.75rem;
    padding-inline-start: 1.2rem;
    font-size: 0.95rem;
}
.figure__cell li
{
    break-inside: avoid;
    margin-bottom: 0.3rem;
}
.figure__cell a
{
    color: var(--soft);
    text-underline-offset: 3px;
}
.figure__cell a:hover
{
    color: var(--thin);
}
.badge
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.region
{
    display: flex;
    flex-direction: column;
    background: var(--tone);
    border: 1px solid var(--card);
    border-radius: var(--dim);
    overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease;
}
.region:hover
{
    border-color: var(--lead);
    transform: translateY(-2px);
}
.region__foot
{
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--flat);
}
.region__foot img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.region__edge
{
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.85rem;
    margin-top: auto;
}
.region__meta
{
    font-weight: 600;
    color: var(--thin);
    line-height: 1.3;
    margin: 0;
}
.region .ribbon
{
    width: 100%;
    padding-block: 0.5rem;
    font-size: 0.95rem;
}
.piece__off
{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.widget
{
    background: var(--grid);
    border: 1px solid var(--card);
    border-radius: var(--dim);
    padding: 1.1rem 1.2rem;
}
.widget__edge
{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}
.widget__outer
{
    font-weight: 700;
    color: var(--thin);
}
.widget__large
{
    color: var(--lead);
    font-weight: 700;
    white-space: nowrap;
}
.widget__bottom
{
    margin: 0;
    color: var(--soft);
}
.frame__plain
{
    display: grid;
    gap: 0.5rem;
    max-width: var(--bold);
}
.frame__thumb
{
    border: 1px solid var(--card);
    border-radius: var(--base);
    background: var(--tone);
    padding: 0 1.1rem;
}
.frame__info
{
    cursor: pointer;
    font-weight: 600;
    color: var(--thin);
    padding-block: 0.9rem;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.frame__info::-webkit-details-marker
{
    display: none;
}
.frame__info::before
{
    content: "+";
    color: var(--lead);
    font-weight: 700;
    line-height: 1.4;
    flex-shrink: 0;
}
.frame__thumb[open] .frame__info::before
{
    content: "−";
}
.frame__icon
{
    color: var(--soft);
    padding-bottom: 1rem;
}
.frame__icon > :first-child
{
    margin-top: 0;
}
.frame__icon > :last-child
{
    margin-bottom: 0;
}
.segment
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: 1.5rem;
    border-radius: var(--dim);
    background: color-mix(in srgb, var(--lead) 12%, var(--flat));
    border: 1px solid color-mix(in srgb, var(--lead) 35%, var(--card));
}
.segment__less
{
    margin: 0;
    font-size: var(--plain);
    font-weight: 800;
    color: var(--thin);
    text-wrap: balance;
}
.segment__icon
{
    margin: 0.25rem 0 0;
    font-size: 0.82rem;
    color: var(--soft);
}
.band
{
    border-top: 1px solid var(--card);
    background: var(--flat);
    color: var(--soft);
    padding-block: 2rem 6rem;
}
.band__large
{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--card);
}
.band__plain
{
    margin-inline-end: auto;
    font-weight: 700;
    color: var(--thin);
}
.band__plain img
{
    height: 32px;
    width: auto;
    object-fit: contain;
}
.band__open
{
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
}
.band__open:empty
{
    display: none;
}
.band__open a
{
    text-decoration: none;
}
.band__open a:hover
{
    text-decoration: underline;
}
.band__dark
{
    width: min(100% - 2rem, var(--band));
    margin-inline: auto;
    padding-top: 1.25rem;
    font-size: 0.85rem;
    display: grid;
    gap: 0.5rem;
}
.band__dark p
{
    margin: 0;
}
.band__wide
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.marker
{
    display: inline-grid;
    place-items: center;
    min-width: 2.1rem;
    height: 2.1rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.78rem;
}
.wrapper
{
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--lead) 14%, var(--edge));
    color: var(--warm);
    border-top: 1px solid color-mix(in srgb, var(--lead) 45%, transparent);
}
.wrapper__side
{
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.25;
}
.wrapper__open
{
    font-weight: 800;
    color: var(--warm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.wrapper__foot
{
    font-size: 0.75rem;
    opacity: 0.7;
}
.wrapper .ribbon
{
    margin-inline-start: auto;
    flex-shrink: 0;
}
@media (max-width: 960px) {
    .chunk__less
    {
        grid-template-columns: 1fr;
        grid-template-areas: "title" "offer" "text";
        gap: 1.25rem;
    }
    .tile
    {
        grid-template-columns: 1fr;
    }
    .tile__link
    {
        max-width: 260px;
        margin-inline: auto;
    }
}
@media (max-width: 700px) {
    .figure__cell
    {
        columns: 1;
    }
    .badge
    {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
        gap: 0.75rem;
    }
}
@media (max-width: 640px) {
    .board
    {
        position: static;
    }
    .board__light
    {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
        padding-block: 0.6rem;
    }
    .board__light
    {
        flex-wrap: nowrap;
    }
    .sheet, .plate, .board__wide .ribbon_bold
    {
        display: none;
    }
    .plate + .board__wide
    {
        margin-inline-start: auto;
    }
    .holder
    {
        display: block;
        order: 3;
    }
    .board__wide
    {
        margin-inline-start: auto;
    }
    .board__wide .ribbon
    {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }
    .wrap
    {
        padding-block: 1.75rem;
    }
    .summary__shut, .segment
    {
        padding: 1.15rem;
    }
    .chunk__open .ribbon_line, .segment .ribbon_line
    {
        width: 100%;
    }
    .wrapper__foot
    {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    *::before, *
    {
        transition: none !important;
    }
}
