:root
{
 --wide: #0b1220;
 --edge: #dfe5f0;
 --line: #ffffff;
 --band: #ffb300;
 --main: #111111;
 --head: #d99700;
 --stroke: #070b16;
 --size: #ffffff;
 --tile: color-mix(in srgb, var(--edge) 6%, var(--wide));
 --base: color-mix(in srgb, var(--edge) 3%, var(--wide));
 --depth: color-mix(in srgb, var(--edge) 18%, var(--wide));
 --zone: color-mix(in srgb, var(--edge) 68%, var(--wide));
 --body: 1160px;
 --lift: 78ch;
 --space: 14px;
 --soft: 8px;
 --flat: 0 2px 4px rgb(0 0 0 / 10%), 0 16px 40px rgb(0 0 0 / 16%);
 --grid: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
 --flow: clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
 --card: clamp(1.4rem, 1.24rem + 0.75vw, 1.95rem);
 --warm: clamp(1.95rem, 1.5rem + 1.9vw, 3.1rem);
}

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

body
{
 margin: 0;
 background: var(--wide);
 color: var(--edge);
 font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
 font-size: var(--grid);
 line-height: 1.65;
 -webkit-text-size-adjust: 100%;
 overflow-wrap: break-word;
}

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

a
{
 color: inherit;
}

.box
{
 position: sticky;
 top: 0;
 z-index: 20;
 background: var(--stroke);
 color: var(--size);
}

.strip__shut, .record__first, .sheet__open, .box__plain, .module__outer
{
 width: min(100% - 2rem, var(--body));
 margin-inline: auto;
}

.box__plain
{
 display: flex;
 align-items: center;
 gap: 1.25rem;
 min-height: 60px;
 padding-block: 0.5rem;
}

.chip
{
 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;
}

.chip img
{
 height: 32px;
 width: auto;
 object-fit: contain;
}

.board
{
 display: flex;
 gap: 0.15rem;
 margin-inline-end: auto;
 min-width: 0;
}

.board a
{
 padding: 0.4rem 0.7rem;
 border-radius: var(--soft);
 text-decoration: none;
 color: inherit;
 opacity: 0.82;
 white-space: nowrap;
 font-size: 0.92rem;
}

.board a:hover
{
 background: color-mix(in srgb, var(--size) 14%, transparent);
 opacity: 1;
}

.board:empty
{
 display: none;
}

.board:empty + .box__line
{
 margin-inline-start: auto;
}

.box__line
{
 display: flex;
 gap: 0.5rem;
 flex-shrink: 0;
}

.rack
{
 display: none;
 position: relative;
 flex-shrink: 0;
}

.rack__plain
{
 list-style: none;
 cursor: pointer;
 width: 40px;
 height: 40px;
 display: grid;
 place-items: center;
 border: 1px solid color-mix(in srgb, var(--size) 40%, transparent);
 border-radius: var(--soft);
}

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

.rack__plain span::before, .rack__plain span, .rack__plain span::after
{
 content: "";
 display: block;
 width: 18px;
 height: 2px;
 background: currentColor;
 border-radius: 2px;
}

.rack__plain span
{
 position: relative;
}

.rack__plain span::before
{
 position: absolute;
 top: -6px;
}

.rack__plain span::after
{
 position: absolute;
 top: 6px;
}

.rack__narrow
{
 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(--stroke);
 border: 1px solid color-mix(in srgb, var(--size) 20%, transparent);
 border-radius: var(--space);
 box-shadow: var(--flat);
}

.rack__narrow a
{
 padding: 0.6rem 0.7rem;
 border-radius: var(--soft);
 text-decoration: none;
 color: var(--size);
}

.rack__narrow a:hover
{
 background: color-mix(in srgb, var(--size) 12%, transparent);
}

.rack__narrow .banner
{
 margin-top: 0.4rem;
 color: var(--size);
 border-color: color-mix(in srgb, var(--size) 40%, transparent);
}

.box .banner_info
{
 color: inherit;
 border-color: color-mix(in srgb, var(--size) 45%, transparent);
}

.box .banner_info:hover
{
 background: color-mix(in srgb, var(--size) 14%, transparent);
}

.record
{
 background: color-mix(in srgb, var(--size) 8%, var(--stroke));
 border-top: 1px solid color-mix(in srgb, var(--size) 12%, transparent);
 font-size: 0.9rem;
}

.record__first
{
 display: flex;
 gap: 0.25rem;
 overflow-x: auto;
 scrollbar-width: none;
}

.record__first::-webkit-scrollbar
{
 display: none;
}

.record a
{
 padding: 0.55rem 0.7rem;
 text-decoration: none;
 color: var(--size);
 opacity: 0.8;
 white-space: nowrap;
 border-bottom: 2px solid transparent;
}

.record a:hover
{
 opacity: 1;
 border-bottom-color: var(--band);
}

.banner
{
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.4rem;
 border: 1px solid var(--shell, transparent);
 border-radius: var(--soft);
 padding: 0.6rem 1.1rem;
 font: inherit;
 font-weight: 700;
 line-height: 1.2;
 text-align: center;
 cursor: pointer;
 text-decoration: none;
 background: var(--band);
 color: var(--main);
 transition: background-color 0.15s ease, transform 0.05s ease;
}

.banner:hover
{
 background: var(--head);
}

.banner:active
{
 transform: translateY(1px);
}

.banner_info
{
 background: transparent;
 color: var(--line);
 border-color: var(--depth);
}

.banner_info:hover
{
 background: var(--tile);
}

.banner_first
{
 padding: 0.9rem 1.8rem;
 font-size: var(--flow);
}

:focus-visible
{
 outline: 2px solid var(--band);
 outline-offset: 2px;
}

.plate h3, .piece, .plate h2, .wrap h2, .module__light, .wrap h3
{
 color: var(--line);
 line-height: 1.18;
 letter-spacing: -0.02em;
 text-wrap: balance;
}

.piece
{
 font-size: var(--warm);
 margin: 0 0 1rem;
}

.module__light
{
 font-size: var(--card);
 margin: 0 0 1.25rem;
}

.wrap h3, .plate h3
{
 font-size: var(--flow);
 margin: 1.75rem 0 0.5rem;
}

.wrap p, .plate p
{
 margin: 0 0 1rem;
}

.plate > :last-child, .wrap > :last-child
{
 margin-bottom: 0;
}

.wrap a, .plate a
{
 color: color-mix(in srgb, var(--band) 72%, var(--line));
 text-underline-offset: 3px;
}

.shell
{
 display: block;
}

.module
{
 padding-block: clamp(2rem, 1.4rem + 2vw, 3.5rem);
 scroll-margin-top: 72px;
}

.shell > .module:not(.strip):nth-of-type(odd)
{
 background: var(--tile);
}

.plate
{
 max-width: var(--lift);
}

.module_list .plate ul
{
 list-style: none;
 padding: 0;
 margin: 0 0 1rem;
 display: grid;
 gap: 0.5rem;
}

.module_list .plate ul > li
{
 position: relative;
 padding-inline-start: 1.9rem;
 padding-block: 0.15rem;
}

.module_list .plate 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(--band);
 border-bottom: 2px solid var(--band);
 transform: rotate(-45deg);
}

.module_list .plate ol
{
 counter-reset: step;
 list-style: none;
 padding: 0;
 display: grid;
 gap: 0.6rem;
}

.module_list .plate ol > li
{
 counter-increment: step;
 position: relative;
 padding-inline-start: 2.6rem;
}

.module_list .plate 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(--band);
 color: var(--main);
 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(--depth);
 border-inline-start: 3px solid var(--zone);
 border-radius: 0 var(--soft) var(--soft) 0;
 background: var(--tile);
 font-size: 0.95rem;
}

.note p
{
 margin: 0 0 0.6rem;
}

.note > :last-child
{
 margin-bottom: 0;
}

.note strong
{
 color: var(--line);
}

.note--disclosure
{
 color: var(--zone);
 font-size: 0.88rem;
 background: transparent;
 border-inline-start-color: var(--depth);
}

.note--warning
{
 border-inline-start-color: var(--band);
 background: color-mix(in srgb, var(--band) 10%, var(--wide));
}

.note--takeaway
{
 font-variant-numeric: tabular-nums;
 border-inline-start-color: var(--line);
}

.note--rg
{
 border: 1px solid color-mix(in srgb, var(--line) 30%, var(--depth));
 border-radius: var(--space);
 background: var(--base);
}

.note--rg a
{
 font-weight: 600;
}

.note--independent
{
 margin-top: 2.5rem;
 font-size: 0.85rem;
 color: var(--zone);
 background: transparent;
 border: 0;
 border-top: 1px solid var(--depth);
 border-radius: 0;
 padding: 1rem 0 0;
}

.plate blockquote, .wrap blockquote
{
 margin: 1.25rem 0;
 padding: 1rem 1.25rem;
 border-inline-start: 3px solid var(--band);
 border-radius: 0 var(--soft) var(--soft) 0;
 background: var(--tile);
 color: var(--zone);
 font-size: 0.95rem;
}

.wrap blockquote p, .plate blockquote p
{
 margin: 0 0 0.6rem;
}

.plate blockquote > :last-child, .wrap blockquote > :last-child
{
 margin-bottom: 0;
}

.plate blockquote strong, .wrap blockquote strong
{
 color: var(--line);
}

.plate hr
{
 border: 0;
 border-top: 1px solid var(--depth);
 margin: 2rem 0;
}

.plate table
{
 width: 100%;
 border-collapse: collapse;
 margin: 0 0 1.25rem;
 font-size: 0.95rem;
 background: var(--base);
 border: 1px solid var(--depth);
 border-radius: var(--space);
 overflow: hidden;
}

.module_table .plate
{
 max-width: none;
 overflow-x: auto;
}

.plate th, .plate td
{
 border-bottom: 1px solid var(--depth);
 padding: 0.7rem 0.9rem;
 text-align: start;
 vertical-align: top;
}

.plate caption
{
 caption-side: top;
 text-align: start;
 padding: 0 0 0.6rem;
 font-weight: 700;
 color: var(--line);
}

.plate thead th
{
 background: color-mix(in srgb, var(--band) 16%, var(--tile));
 color: var(--line);
 font-weight: 700;
 white-space: nowrap;
}

.plate tbody tr:last-child td
{
 border-bottom: 0;
}

.plate tbody tr:nth-child(even)
{
 background: color-mix(in srgb, var(--edge) 3%, transparent);
}

.entry
{
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
 gap: 2rem;
 align-items: start;
}

.entry__soft
{
 border: 1px solid var(--depth);
 border-radius: var(--space);
 box-shadow: var(--flat);
 width: 100%;
}

.strip
{
 position: relative;
 padding-block: clamp(2rem, 1.2rem + 3vw, 4rem);
 background: var(--stroke);
 isolation: isolate;
}

.strip::before
{
 content: "";
 position: absolute;
 inset: 0;
 z-index: -1;
 background-image: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 82%)), var(--field, none);
 background-size: cover;
 background-position: center;
}

.row__foot
{
 margin-top: 1.25rem;
 text-align: center;
}

.row__foot a
{
 color: var(--band);
 font-weight: 600;
}

.band
{
 text-align: center;
}

.band__meta
{
 font-size: clamp(3.5rem, 12vw, 6rem);
 line-height: 1;
 font-weight: 800;
 color: var(--band);
 margin-bottom: 0.5rem;
}

.band__open
{
 max-width: 46ch;
 margin-inline: auto;
 color: var(--zone);
}

.band__bold
{
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 0.75rem;
 margin-top: 1.75rem;
}

@media (max-width: 700px) {
 .strip::before
 {
  background-image: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 82%)), var(--core, var(--field, none));
 }

}
.strip__shut
{
 display: grid;
 grid-template-columns: minmax(0, 1fr) minmax(300px, 22rem);
 grid-template-areas: "title offer" "text offer";
 align-content: start;
 gap: 0 2rem;
}

.strip .piece
{
 grid-area: title;
 color: #ffffff;
}

.strip__off
{
 grid-area: text;
 color: #f2f4f8;
 max-width: 62ch;
}

.strip .wrap
{
 margin-bottom: 1.5rem;
}

.strip__flat
{
 margin: 0.75rem 0 0;
 font-size: 0.85rem;
 opacity: 0.75;
}

.unit
{
 grid-area: offer;
 background: var(--wide);
 border: 1px solid color-mix(in srgb, var(--band) 40%, var(--depth));
 border-radius: var(--space);
 box-shadow: var(--flat);
 overflow: hidden;
 align-self: start;
}

.unit .banner
{
 width: 100%;
}

.unit__foot
{
 display: grid;
 place-items: center;
 min-height: 74px;
 padding: 0.9rem 1.25rem;
 background: color-mix(in srgb, var(--band) 22%, var(--wide));
 color: var(--line);
 border-bottom: 3px solid var(--band);
}

.unit__foot img
{
 height: 42px;
 width: auto;
 max-width: 100%;
 object-fit: contain;
}

.unit__line
{
 display: flex;
 flex-direction: column;
 gap: 0.6rem;
 padding: 1.25rem;
 text-align: center;
}

.unit__side
{
 font-weight: 800;
 font-size: var(--flow);
 color: inherit;
 text-align: center;
}

.unit__soft
{
 font-size: 0.78rem;
 text-transform: uppercase;
 letter-spacing: 0.09em;
 color: var(--zone);
 margin: 0;
}

.unit__figure
{
 font-size: var(--card);
 font-weight: 800;
 line-height: 1.15;
 color: var(--line);
 margin: 0;
 text-wrap: balance;
}

.unit__off
{
 font-size: 0.8rem;
 color: var(--zone);
 margin: 0;
}

.field
{
 padding-block: 1.5rem;
}

.caption
{
 border: 1px solid var(--depth);
 border-radius: var(--space);
 background: var(--base);
 padding: 0.5rem 1.1rem;
}

.caption__last
{
 cursor: pointer;
 font-weight: 700;
 color: var(--line);
 padding-block: 0.6rem;
 list-style: none;
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

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

.caption__last::before
{
 content: "";
 width: 0.5rem;
 height: 0.5rem;
 border-inline-end: 2px solid var(--band);
 border-bottom: 2px solid var(--band);
 transform: rotate(45deg);
 transition: transform 0.15s ease;
}

.caption[open] .caption__last::before
{
 transform: rotate(-135deg);
}

.caption__icon
{
 columns: 2;
 gap: 2rem;
 margin: 0 0 0.75rem;
 padding-inline-start: 1.2rem;
 font-size: 0.95rem;
}

.caption__icon li
{
 break-inside: avoid;
 margin-bottom: 0.3rem;
}

.caption__icon a
{
 color: var(--zone);
 text-underline-offset: 3px;
}

.caption__icon a:hover
{
 color: var(--line);
}

.slab
{
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
 gap: 1rem;
 list-style: none;
 margin: 0;
 padding: 0;
}

.bay
{
 display: flex;
 flex-direction: column;
 background: var(--base);
 border: 1px solid var(--depth);
 border-radius: var(--space);
 overflow: hidden;
 transition: border-color 0.15s ease, transform 0.15s ease;
}

.bay:hover
{
 border-color: var(--band);
 transform: translateY(-2px);
}

.bay__shut
{
 aspect-ratio: 4 / 3;
 overflow: hidden;
 background: var(--tile);
}

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

.bay__alt
{
 display: flex;
 flex-direction: column;
 gap: 0.7rem;
 padding: 0.85rem;
 margin-top: auto;
}

.bay__icon
{
 font-weight: 600;
 color: var(--line);
 line-height: 1.3;
 margin: 0;
}

.bay .banner
{
 width: 100%;
 padding-block: 0.5rem;
 font-size: 0.95rem;
}

.ribbon__alt
{
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
 gap: 1rem;
 list-style: none;
 margin: 0;
 padding: 0;
}

.marker
{
 background: var(--wide);
 border: 1px solid var(--depth);
 border-radius: var(--space);
 padding: 1.1rem 1.2rem;
}

.marker__foot
{
 display: flex;
 align-items: baseline;
 justify-content: space-between;
 gap: 0.5rem;
 margin-bottom: 0.4rem;
}

.marker__bottom
{
 font-weight: 700;
 color: var(--line);
}

.marker__large
{
 color: var(--band);
 font-weight: 700;
 white-space: nowrap;
}

.marker__plain
{
 margin: 0;
 color: var(--zone);
}

.chunk__last
{
 display: grid;
 gap: 0.5rem;
 max-width: var(--lift);
}

.chunk__on
{
 border: 1px solid var(--depth);
 border-radius: var(--soft);
 background: var(--base);
 padding: 0 1.1rem;
}

.chunk__off
{
 cursor: pointer;
 font-weight: 600;
 color: var(--line);
 padding-block: 0.9rem;
 list-style: none;
 display: flex;
 align-items: flex-start;
 gap: 0.75rem;
}

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

.chunk__off::before
{
 content: "+";
 color: var(--band);
 font-weight: 700;
 line-height: 1.4;
 flex-shrink: 0;
}

.chunk__on[open] .chunk__off::before
{
 content: "−";
}

.chunk__dark
{
 color: var(--zone);
 padding-bottom: 1rem;
}

.chunk__dark > :first-child
{
 margin-top: 0;
}

.chunk__dark > :last-child
{
 margin-bottom: 0;
}

.teaser
{
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 1rem 2rem;
 padding: 1.5rem;
 border-radius: var(--space);
 background: color-mix(in srgb, var(--band) 12%, var(--tile));
 border: 1px solid color-mix(in srgb, var(--band) 35%, var(--depth));
}

.teaser__bold
{
 margin: 0;
 font-size: var(--flow);
 font-weight: 800;
 color: var(--line);
 text-wrap: balance;
}

.teaser__line
{
 margin: 0.25rem 0 0;
 font-size: 0.82rem;
 color: var(--zone);
}

.sheet
{
 border-top: 1px solid var(--depth);
 background: var(--tile);
 color: var(--zone);
 padding-block: 2rem 6rem;
}

.sheet__open
{
 display: flex;
 flex-wrap: wrap;
 gap: 1rem 1.5rem;
 align-items: center;
 padding-bottom: 1.25rem;
 border-bottom: 1px solid var(--depth);
}

.sheet__line
{
 margin-inline-end: auto;
 font-weight: 700;
 color: var(--line);
}

.sheet__line img
{
 height: 32px;
 width: auto;
 object-fit: contain;
}

.sheet__side
{
 display: flex;
 flex-wrap: wrap;
 gap: 0.25rem 1rem;
}

.sheet__side:empty
{
 display: none;
}

.sheet__side a
{
 text-decoration: none;
}

.sheet__side a:hover
{
 text-decoration: underline;
}

.sheet__top
{
 width: min(100% - 2rem, var(--body));
 margin-inline: auto;
 padding-top: 1.25rem;
 font-size: 0.85rem;
 display: grid;
 gap: 0.5rem;
}

.sheet__top p
{
 margin: 0;
}

.sheet__figure
{
 display: flex;
 align-items: center;
 gap: 0.5rem;
 flex-wrap: wrap;
}

.tag
{
 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;
}

.summary
{
 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(--band) 14%, var(--stroke));
 color: var(--size);
 border-top: 1px solid color-mix(in srgb, var(--band) 45%, transparent);
}

.summary__open
{
 display: flex;
 flex-direction: column;
 min-width: 0;
 line-height: 1.25;
}

.summary__alt
{
 font-weight: 800;
 color: var(--size);
 overflow: hidden;
 text-overflow: ellipsis;
 white-space: nowrap;
}

.summary__light
{
 font-size: 0.75rem;
 opacity: 0.7;
}

.summary .banner
{
 margin-inline-start: auto;
 flex-shrink: 0;
}

@media (max-width: 960px) {
 .strip__shut
 {
  grid-template-columns: 1fr;
  grid-template-areas: "title" "offer" "text";
  gap: 1.25rem;
 }

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

 .entry__soft
 {
  max-width: 260px;
  margin-inline: auto;
 }

}
@media (max-width: 700px) {
 .caption__icon
 {
  columns: 1;
 }

 .slab
 {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 0.75rem;
 }

}
@media (max-width: 640px) {
 .box
 {
  position: static;
 }

 .box__plain
 {
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding-block: 0.6rem;
 }

 .box__plain
 {
  flex-wrap: nowrap;
 }

 .box__line .banner_info, .record, .board
 {
  display: none;
 }

 .board + .box__line
 {
  margin-inline-start: auto;
 }

 .rack
 {
  display: block;
  order: 3;
 }

 .box__line
 {
  margin-inline-start: auto;
 }

 .box__line .banner
 {
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
 }

 .module
 {
  padding-block: 1.75rem;
 }

 .teaser, .unit__line
 {
  padding: 1.15rem;
 }

 .strip__off .banner_first, .teaser .banner_first
 {
  width: 100%;
 }

 .summary__light
 {
  display: none;
 }

}
@media (prefers-reduced-motion: reduce) {
 *::before, *
 {
  transition: none !important;
 }

}
