

@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/noto-sans-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #ffffff;
  --paper-warm: #f7f3f2;
  --paper-mist: #f0e8e6;
  --line: #e5e0df;
  --line-deep: #cac5c4;
  --ink: #171414;
  --ink-mid: #565151;
  --ink-low: #6d6969;
  --sea: #0072c3;
  --sea-deep: #00539a;
  --sea-night: #003a6d;
  --sea-wash: #e5f6ff;
  --sea-bright: #33b1ff;
  --night: #23272b;
  --night-2: #373b40;
  --night-3: #2c3136;
  --flare: #ff333a;
  --coin: #f59f44;
  --coin-soft: #fddc69;
  --coin-deep: #9a5a0f;
  --grow: #198038;
  --grow-wash: #defbe6;
  --alarm: #da1e28;
  --alarm-wash: #fff1f1;
  --plum: #6929c4;
  --font-main: 'Noto Sans', Helvetica, Arial, sans-serif;
  --wrap: 1200px;
  --bar-h: 64px;
  --bend: 10px;
  --bend-lg: 18px;
  --glide: cubic-bezier(0.4, 0, 0.2, 1);
  --lift: 0 10px 30px rgba(23,20,20,0.10);
  --backdrop: url('/images/prize-night-backdrop.webp');
}
@media (max-width: 760px) { :root { --backdrop: url('/images/prize-night-backdrop-m.webp'); } }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + 16px); }
body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-top: var(--bar-h);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sea); text-decoration: none; }
a:hover { color: var(--sea-deep); }
ul, ol { list-style: none; }
button { font-family: var(--font-main); }

h1, h2, h3 { line-height: 1.22; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: 1.55rem; }
.chapter > .spread > h2 { text-align: center; margin-bottom: 1rem; }
h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
p { margin-bottom: 0.9rem; }

.spread { max-width: var(--wrap); margin: 0 auto; padding: 0 1.1rem; }

.strip-core { max-width: var(--wrap); margin: 0 auto; padding: 0 1.1rem; }

.prizetop {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--bar-h);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 0 0 var(--sea) inset;
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .prizetop { background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}
.prizetop-core {
  position: relative;
  max-width: var(--wrap); margin: 0 auto; height: 100%;
  padding: 0 1.1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.sitemark {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 0.45rem;
}
.mark-lockup { display: block; height: 56px; width: auto; }
@media (max-width: 479px) { .mark-lockup { height: 46px; } }
.mainstrip { display: none; }
.prizetop-side { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.agechip {
  flex-shrink: 0;
  font-size: 0.72rem; font-weight: 700; color: var(--ink-mid);
  border: 1.5px solid var(--line-deep); border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

.spinsbtn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.38rem 0.95rem 0.38rem 0.5rem; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(120deg, var(--coin-soft) 0%, var(--coin) 58%, var(--coin-deep) 100%);
  color: var(--ink); font-size: 0.86rem; font-weight: 800; white-space: nowrap;
  box-shadow: 0 6px 16px rgba(245,159,68,0.42);
  transition: filter 0.16s var(--glide), transform 0.16s var(--glide);
}
.spinsbtn:hover, .spinsbtn[aria-expanded="true"] { filter: brightness(1.06); transform: translateY(-1px); }
.spinsbtn img { width: 26px; height: 26px; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.35)); }
.spinsbtn .spins-long { display: none; }
@media (max-width: 479px) {
  .spinsbtn { padding: 0.3rem; }
  .spinsbtn .spins-short { display: none; }
}
@media (min-width: 1100px) {
  .spinsbtn .spins-long { display: inline; }
  .spinsbtn .spins-short { display: none; }
}

@media (min-width: 900px) {
  .mainstrip { display: flex; align-items: center; }
  .pocketbtn { display: none !important; }
  .pocketnav { display: none !important; }
}
.mainstrip > ul { display: flex; align-items: center; gap: 0.1rem; list-style: none; }
.mainstrip > ul > li > a, .stripdrop-btn {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.45rem 0.75rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-mid);
  background: none; border: none; cursor: pointer;
  transition: color 0.16s var(--glide), background 0.16s var(--glide);
  white-space: nowrap;
}
.mainstrip > ul > li > a:hover, .stripdrop-btn:hover,
.stripdrop.open .stripdrop-btn { color: var(--ink); background: var(--paper-mist); }
.mainstrip > ul > li > a[aria-current="page"] { color: var(--sea-deep); background: var(--sea-wash); }
.stripdrop { position: static; }
.stripdrop-btn .caret { transition: transform 0.2s var(--glide); }
.stripdrop.open .caret { transform: rotate(180deg); }

.stripsheet {
  position: absolute; top: 100%; left: 1.1rem; right: 1.1rem;
  display: none; grid-template-columns: 230px minmax(0, 1fr); gap: 1.5rem;
  background: var(--paper); border: 1px solid var(--line-deep); border-top: 0;
  border-radius: 0 0 var(--bend-lg) var(--bend-lg);
  padding: 1.3rem 1.4rem 1.4rem;
  box-shadow: 0 26px 54px rgba(23,20,20,0.2);
}
@media (min-width: 1200px) { .stripsheet { grid-template-columns: 260px minmax(0, 1fr); gap: 1.8rem; } }
.stripdrop.open .stripsheet { display: grid; }
.sheet-intro { padding-right: 1.4rem; border-right: 1px solid var(--line); }
.sheet-intro img { width: 88px; height: 88px; filter: drop-shadow(0 12px 16px rgba(23,20,20,0.28)); }
.sheet-intro strong { display: block; font-size: 1.02rem; line-height: 1.3; margin: 0.65rem 0 0.35rem; }
.sheet-intro p { font-size: 0.84rem; line-height: 1.5; color: var(--ink-low); margin-bottom: 0.7rem; }
.sheet-all { font-size: 0.86rem; font-weight: 700; color: var(--sea-deep); }
.sheet-all:hover { text-decoration: underline; }
.sheet-grid { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.25rem 0.6rem; align-content: start; }
.sheet-grid a {
  display: flex; align-items: center; gap: 0.7rem; min-width: 0;
  padding: 0.5rem 0.6rem; border-radius: var(--bend); color: var(--ink);
  transition: background 0.14s var(--glide);
}
.sheet-grid a:hover { background: var(--paper-warm); }
.sheet-grid a:hover strong, .sheet-grid a[aria-current="page"] strong { color: var(--sea-deep); }
.sheet-grid img { width: 44px; height: 44px; flex-shrink: 0; filter: drop-shadow(0 6px 9px rgba(23,20,20,0.24)); }
.sheet-grid span { min-width: 0; }
.sheet-grid strong { display: block; font-size: 0.88rem; line-height: 1.25; }
.sheet-grid small { display: block; font-size: 0.74rem; line-height: 1.35; color: var(--ink-low); margin-top: 0.12rem; }
.sheet-lists { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.4rem 1rem; }
.sheet-lists img { width: 54px; height: 54px; }
.sheet-lists strong { font-size: 0.94rem; }
.sheet-lists small { font-size: 0.78rem; }
.sheet-reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sheet-reviews a { padding: 0.42rem 0.6rem; }
.sheet-reviews .crestmini, .pocketnav .crestmini { width: 72px; height: 27px; border-radius: 6px; object-fit: cover; filter: none; }
.sheet-reviews .crest-score { margin-left: auto; font-style: normal; flex-shrink: 0; }
.sheet-shelves { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.6rem 1rem; align-content: start; }
.sheet-shelves ul { list-style: none; }
.shelf-tag { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coin-deep); margin: 0 0 0.35rem 0.5rem; }
.sheet-shelves a {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.36rem 0.5rem; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; line-height: 1.25; color: var(--ink-mid);
  transition: background 0.14s var(--glide), color 0.14s var(--glide);
}
.sheet-shelves a:hover, .sheet-shelves a[aria-current="page"] { background: var(--paper-warm); color: var(--sea-deep); }
.sheet-shelves img { width: 30px; height: 30px; flex-shrink: 0; filter: drop-shadow(0 4px 6px rgba(23,20,20,0.24)); }

.pocketbtn {
  display: flex; align-items: center; justify-content: center;
  background: var(--paper-warm); border: 1px solid var(--line);
  border-radius: var(--bend); width: 38px; height: 38px; cursor: pointer;
  transition: border-color 0.16s, background 0.16s;
}
.pocketbtn:hover { border-color: var(--sea); background: var(--sea-wash); }
.pocket-shut { display: none; }
body.nav-open .pocket-shut { display: block; }
body.nav-open .pocket-show { display: none; }

.pocketnav {
  display: none; position: fixed; inset: var(--bar-h) 0 0 0;
  background: var(--paper); z-index: 400; overflow-y: auto;
  border-top: 2px solid var(--sea);
}
body.nav-open .pocketnav { display: block; }
.pocketnav > ul { display: flex; flex-direction: column; padding: 0.4rem 0 2rem; list-style: none; }
.pocketnav a {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.8rem 1.4rem; font-size: 1.02rem; font-weight: 600;
  color: var(--ink-mid); border-bottom: 1px solid var(--line);
}
.pocketnav a img { width: 30px; height: 30px; flex-shrink: 0; filter: drop-shadow(0 4px 6px rgba(23,20,20,0.24)); }
.pocketnav a .crestmini { width: 56px; height: 21px; }
.pocketnav a:hover, .pocketnav a[aria-current="page"] { color: var(--sea-deep); background: var(--sea-wash); }
.pocket-label {
  padding: 1.3rem 1.4rem 0.4rem; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--sea-deep);
}

.spinsdoor { display: none; position: fixed; inset: 0; z-index: 700; align-items: center; justify-content: center; padding: 1rem; }
.spinsdoor.is-open { display: flex; }
body.door-open { overflow: hidden; }
.spinsdoor-veil { position: absolute; inset: 0; background: rgba(10,14,20,0.66); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.spinsdoor-card {
  position: relative; width: 100%; max-width: 740px; max-height: calc(100vh - 2rem); overflow: auto;
  background: var(--paper); border-radius: var(--bend-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  padding: 1.3rem 1.4rem 1.15rem;
  animation: doorlift 0.22s var(--glide);
}
@keyframes doorlift { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .spinsdoor-card { animation: none; } }
.door-shut {
  position: absolute; top: 0.85rem; right: 0.85rem; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line); background: var(--paper-warm); cursor: pointer;
  transition: border-color 0.16s, background 0.16s;
}
.door-shut:hover { border-color: var(--sea); background: var(--sea-wash); }
.door-head { display: flex; align-items: center; gap: 0.9rem; padding-right: 2.6rem; margin-bottom: 0.85rem; }
.door-head img { width: 64px; height: 64px; flex-shrink: 0; filter: drop-shadow(0 10px 14px rgba(23,20,20,0.3)); }
.door-head h2 { font-size: 1.32rem; line-height: 1.2; margin-bottom: 0.25rem; }
.door-head p { font-size: 0.84rem; color: var(--ink-low); margin: 0; }
.door-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.door-row {
  display: grid; grid-template-columns: 30px 88px minmax(0, 1fr) auto; gap: 0.85rem; align-items: center;
  padding: 0.7rem 0.85rem; border: 1px solid var(--line); border-radius: var(--bend);
}
.door-row:first-child { border-color: var(--coin); }
.door-rank {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--night); color: #ffffff; font-size: 0.84rem; font-weight: 800;
}
.door-row:first-child .door-rank { background: var(--coin); color: var(--ink); }
.door-crest { width: 88px; height: 33px; border-radius: 7px; object-fit: cover; }
.door-copy { min-width: 0; }
.door-copy strong { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; font-size: 0.98rem; }
.door-copy .crest-score { font-style: normal; }
.door-copy p { font-size: 0.86rem; line-height: 1.4; margin: 0.15rem 0 0.1rem; }
.door-copy small { display: block; font-size: 0.73rem; line-height: 1.4; color: var(--ink-low); }
.door-act { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.door-claim { font-size: 0.84rem; padding: 0.52rem 1rem; box-shadow: 0 6px 16px rgba(0,114,195,0.38); white-space: nowrap; }
.door-review { font-size: 0.75rem; font-weight: 700; color: var(--sea-deep); white-space: nowrap; }
.door-review:hover { text-decoration: underline; }
.door-terms { font-size: 0.72rem; line-height: 1.45; color: var(--ink-low); margin: 0.8rem 0 0.4rem; }
.door-terms a { color: var(--sea-deep); font-weight: 700; }
.door-more { display: inline-block; font-size: 0.88rem; font-weight: 700; color: var(--sea-deep); }
.door-more:hover { text-decoration: underline; }
@media (max-width: 719px) {
  .spinsdoor { padding: 0.6rem; }
  .spinsdoor-card { padding: 1.2rem 1rem 1.1rem; max-height: calc(100vh - 1.2rem); }
  .door-head img { width: 56px; height: 56px; }
  .door-head h2 { font-size: 1.15rem; }
  .door-row { grid-template-columns: 30px minmax(0, 1fr); gap: 0.6rem 0.8rem; }
  .door-crest { grid-column: 2; }
  .door-copy { grid-column: 2; }
  .door-act { grid-column: 2; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 0.6rem 0.9rem; }
}

.crestband {
  position: relative;
  background:
    linear-gradient(263deg, rgba(21,25,31,0.97) 0%, rgba(21,25,31,0.92) 38%, rgba(21,25,31,0.6) 66%, rgba(21,25,31,0.25) 100%),
    var(--backdrop) left 30% / cover no-repeat;
  color: #ffffff;
  padding: 2rem 0 2.2rem;
  overflow: hidden;
}
.crest-title { margin-bottom: 0.5rem; }
.crest-title h1 { font-size: clamp(1.2rem, 0.75rem + 1vw, 1.5rem); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: #dfe5e9; }
@media (max-width: 700px) { .crest-title h1 { white-space: normal; overflow: visible; } }
.checkstamp { font-size: 0.82rem; color: #a9b4bc; margin: 0.4rem 0 0; }

.crest-inner { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 1020px) {
  .crest-inner { grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr); }
  .crest-inner .offerpanel { order: 1; justify-self: start; }
  .crest-inner .crest-flow { order: 2; justify-self: end; }
}

.crest-flow { max-width: 660px; display: flex; flex-direction: column; gap: 0.9rem; }

.prize-lead {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coin); margin: 0;
}
.prize-head {
  font-size: clamp(1.5rem, 1rem + 1.9vw, 2.3rem); font-weight: 800; line-height: 1.15;
  letter-spacing: -0.01em; margin: 0; color: #ffffff;
}
.prize-head .goldtext {
  background: linear-gradient(100deg, var(--coin-soft) 0%, var(--coin) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.prize-spec { font-size: 0.94rem; color: #c9d1d8; margin: 0; max-width: 56ch; line-height: 1.6; }

.jumplink { font-size: 0.88rem; font-weight: 700; color: #9fd4f8; white-space: nowrap; }
.jumplink:hover { color: #ffffff; }

.also-row { font-size: 0.92rem; color: #c9d1d8; margin: 0.4rem 0 0; max-width: 60ch; }
.also-label {
  display: inline-block; margin-right: 0.5rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sea-bright);
}
.trust-line {
  display: flex; align-items: center; gap: 0.45rem; flex-wrap: wrap;
  font-size: 0.84rem; font-weight: 600; color: #a9c9a9; margin: 0;
}
.trust-line img { filter: invert(76%) sepia(30%) saturate(600%) hue-rotate(80deg); }

.offerpanel {
  position: relative;
  width: 100%; max-width: 430px; justify-self: center;
  background: linear-gradient(160deg, rgba(30,36,44,0.97) 0%, rgba(22,27,33,0.97) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 1.25rem 1.3rem 1.3rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09);
  display: flex; flex-direction: column; gap: 1rem;
}
.offerpanel::before {
  content: ""; position: absolute; inset: -1px; border-radius: 21px; padding: 1px;
  background: linear-gradient(140deg, rgba(51,177,255,0.55), transparent 35%, transparent 70%, rgba(245,159,68,0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.panel-head { display: flex; align-items: center; gap: 0.9rem; }
.panel-head img.panel-mark { width: 128px; height: 48px; border-radius: 10px; }
.panel-head .scorering { width: 58px; height: 58px; }
.panel-head .scorering .ring-num strong { font-size: 1.05rem; }
.panel-head .scorering .ring-num span { display: none; }
.panel-cap { margin: 0; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #8fa0ae; line-height: 1.5; }
.panel-split { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 0; }
.panel-offer { display: flex; gap: 0.9rem; align-items: center; }
.panel-art { width: 78px; height: 78px; border-radius: 14px; flex-shrink: 0; object-fit: cover; }
.panel-offer .p-label { display: block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coin); margin-bottom: 0.15rem; }
.panel-offer .p-label.cool { color: var(--sea-bright); }
.panel-offer strong { display: block; font-size: 0.96rem; line-height: 1.3; color: #ffffff; }
.panel-offer small { display: block; font-size: 0.78rem; color: #aab6c0; line-height: 1.5; margin-top: 0.15rem; }
.offerpanel .claimbtn { width: 100%; }
.offerpanel .termsline { font-size: 0.68rem; color: #8fa0ae; }

.scorering { position: relative; width: 118px; height: 118px; flex-shrink: 0; }
.scorering svg { transform: rotate(-90deg); width: 100%; height: 100%; }
.scorering .ring-track { fill: none; stroke: rgba(255,255,255,0.18); stroke-width: 7; }
.scorering .ring-fill { fill: none; stroke: var(--coin); stroke-width: 7; stroke-linecap: round; }
.scorering .ring-num {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1;
}
.scorering .ring-num strong { font-size: 1.9rem; font-weight: 800; color: var(--coin-soft); }
.scorering .ring-num span { font-size: 0.68rem; color: #c3ccd3; margin-top: 3px; }

.statrail { display: flex; flex-wrap: wrap; gap: 0.45rem 1.5rem; margin-top: 0.5rem; }
.statchip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.83rem; font-weight: 700; color: #dfe5e9; white-space: nowrap;
}
.statchip img { filter: invert(1); opacity: 0.75; }

.crest-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem; margin: 0.5rem 0 0.2rem; }
.claimbtn {
  display: inline-block; text-align: center;
  background: linear-gradient(120deg, var(--sea-bright) 0%, var(--sea) 55%, var(--sea-deep) 100%);
  color: #ffffff;
  font-size: 1.04rem; font-weight: 800;
  padding: 0.85rem 2.1rem; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0,114,195,0.5);
  transition: filter 0.16s var(--glide), transform 0.16s var(--glide);
}
.claimbtn:hover { filter: brightness(1.12); color: #ffffff; transform: translateY(-1px); }
.termsline { font-size: 0.72rem; line-height: 1.5; color: #a9b4bc; max-width: 60ch; }
.termsline.on-paper { color: var(--ink-low); }

.crestband .fadecut {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9));
  pointer-events: none;
}

.taskdeck { padding: 1.5rem 0 0.3rem; border-bottom: 1px solid var(--line); }
.taskdeck-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.2rem 1rem; }
@media (min-width: 800px) { .taskdeck-grid { grid-template-columns: repeat(6, 1fr); } }
.taskcard {
  display: flex; flex-direction: column; gap: 0.45rem;
  padding: 0.7rem 0.2rem 0.9rem;
  color: var(--ink); font-weight: 700; font-size: 0.85rem; line-height: 1.3;
  border-bottom: 3px solid transparent;
  transition: border-color 0.15s var(--glide);
}
.taskcard:hover { color: var(--ink); border-bottom-color: var(--sea); }
.taskcard .t-ico {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.taskcard .t-ico img { filter: invert(1); }
.t-ico.gold { background: linear-gradient(135deg, var(--coin) 0%, var(--coin-deep) 100%); }
.t-ico.blue { background: linear-gradient(135deg, var(--sea-bright) 0%, var(--sea-deep) 100%); }
.t-ico.green { background: linear-gradient(135deg, #42be65 0%, var(--grow) 100%); }
.t-ico.plum { background: linear-gradient(135deg, #8a3ffc 0%, var(--plum) 100%); }
.t-ico.coral { background: linear-gradient(135deg, #fa4d56 0%, var(--alarm) 100%); }
.t-ico.slate { background: linear-gradient(135deg, var(--night-2) 0%, var(--night) 100%); }
.taskcard small { font-weight: 600; font-size: 0.74rem; color: var(--ink-low); }

.chapter { padding: 2.4rem 0; }
.chapter.stripped { padding-bottom: 0; }
.chapter.tinted { background: var(--paper-warm); }
.chapter-head { display: flex; align-items: center; justify-content: center; text-align: center; gap: 0.7rem; margin-bottom: 1rem; }
.chapter-head .c-ico {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.chapter-head .c-ico img { filter: invert(1); }
.chapter-head h2 { margin-bottom: 0; }
.chapter .leadnote { max-width: 72ch; color: var(--ink-mid); margin-left: auto; margin-right: auto; text-align: center; }

.wheelsplit { display: grid; gap: 2rem; margin: 1.3rem 0; align-items: center; }
@media (min-width: 940px) { .wheelsplit { grid-template-columns: 1fr 300px; } }
.wheelstage { display: flex; flex-direction: column; align-items: center; gap: 0.9rem; text-align: center; }
.hero-wheel { position: relative; width: 230px; height: 230px; }
.wheel-disc {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(
    var(--sea) 0 40deg, var(--night-2) 40deg 80deg, var(--coin) 80deg 120deg,
    var(--sea-bright) 120deg 160deg, var(--flare) 160deg 200deg, var(--sea-night) 200deg 240deg,
    var(--coin-soft) 240deg 280deg, var(--sea) 280deg 320deg, var(--night-2) 320deg 360deg);
  border: 6px solid #ffffff;
  box-shadow: 0 0 0 1px var(--line-deep), 0 18px 44px rgba(23,20,20,0.28), inset 0 0 40px rgba(0,0,0,0.22);
  animation: wheelturn 46s linear infinite;
}
@keyframes wheelturn { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .wheel-disc { animation: none; } }
.wheel-hub {
  position: absolute; inset: 50%; width: 94px; height: 94px; transform: translate(-50%, -50%);
  background: #171a1d; border: 3px solid var(--coin);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; line-height: 1.15; gap: 2px;
}
.wheel-hub strong { font-size: 1.02rem; font-weight: 800; color: var(--coin-soft); }
.wheel-hub span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; color: #cfd6db; text-transform: uppercase; }
.wheel-pin {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 11px solid transparent; border-right: 11px solid transparent;
  border-top: 18px solid var(--coin); filter: drop-shadow(0 3px 4px rgba(0,0,0,0.3));
  z-index: 2;
}
.wheel-keys { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.35rem 0.9rem; }
.wheelkey {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--ink-mid);
}
.wheelkey i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }

.termgrid { display: grid; grid-template-columns: 1fr; gap: 0.7rem; }
@media (min-width: 620px) { .termgrid { grid-template-columns: 1fr 1fr; } .termcell.wide { grid-column: 1 / -1; } }
.termcell {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--paper-warm); border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.88rem; color: var(--ink-mid); line-height: 1.5;
}
.term-ico { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.term-ico img { filter: invert(1); }
.term-tag { display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.15rem; }
.greenword { color: var(--grow); }
.redword { color: var(--alarm); }

.steprow { display: grid; gap: 1.1rem; margin: 1.4rem 0; grid-template-columns: 1fr; }
@media (min-width: 700px) { .steprow { grid-template-columns: repeat(3, 1fr); } }
.stepcard { position: relative; padding-left: 3rem; font-size: 0.92rem; color: var(--ink-mid); }
.stepcard strong { display: block; color: var(--ink); font-size: 0.98rem; margin-bottom: 0.2rem; }
.stepcard::before {
  content: attr(data-step);
  position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sea-bright), var(--sea-deep));
  color: #ffffff; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(0,114,195,0.3);
}

.warnpair { display: grid; gap: 1.1rem 2.4rem; margin: 1.3rem 0; grid-template-columns: 1fr; }
@media (min-width: 760px) { .warnpair { grid-template-columns: 1fr 1fr; } }
.warncard { font-size: 0.92rem; color: var(--ink-mid); padding-left: 2rem; position: relative; }
.warncard > img { position: absolute; left: 0; top: 3px; }
.warncard strong { display: block; color: #9f1620; margin-bottom: 0.25rem; font-size: 0.95rem; }
.warncard.calm strong { color: var(--sea-night); }

.mathrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: 1rem 0 1.2rem; }
.mathchip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.84rem; font-weight: 700;
  background: var(--sea-wash); color: var(--sea-night);
  border-radius: 999px; padding: 0.42rem 0.85rem;
}
.mathchip.gold { background: #fcf4d6; color: #7a5308; }
.mathchip.green { background: var(--grow-wash); color: #0e5426; }

.offerstrip {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 160% at 100% 0%, rgba(245,159,68,0.3) 0%, transparent 55%),
    linear-gradient(115deg, var(--night) 0%, var(--night-3) 60%, #3a3324 100%);
  color: #ffffff;
  padding: 1.6rem 0;
  margin-top: 1.8rem;
}
.strip-row { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; text-align: center; }
.offerstrip .offer-copy { max-width: 60ch; }
.offerstrip .offer-title { font-size: 1.35rem; font-weight: 800; color: var(--coin-soft); margin-bottom: 0.35rem; }
.offerstrip .offer-sub { font-size: 0.94rem; color: #d7dde2; margin-bottom: 0; }
.offerstrip .claimbtn { min-width: 260px; }
.offerstrip .termsline { color: #a9b2b9; margin: 1rem auto 0; text-align: center; }

.ladderband { margin: 1.3rem auto; max-width: 860px; }
.laddertrack {
  position: relative; height: 12px; border-radius: 999px;
  background: linear-gradient(90deg, var(--sea-wash) 0%, var(--sea-bright) 35%, var(--coin) 75%, var(--coin-soft) 100%);
}
.ladderends { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 0.84rem; font-weight: 700; color: var(--ink-mid); }
.perkrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 1rem; }

.numberrow { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.6rem; margin: 1.3rem 0; text-align: center; }
.numbertile { flex: 0 1 260px; }
.numbertile strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1.05;
  background: linear-gradient(120deg, var(--sea-bright), var(--sea-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.numbertile span { font-size: 0.8rem; color: var(--ink-low); font-weight: 600; }

.deckpair { display: grid; gap: 1.6rem 3rem; margin: 1.2rem auto; max-width: 980px; }
@media (min-width: 760px) { .deckpair { grid-template-columns: 1fr 1fr; } }
.updeck h3, .downdeck h3 { display: flex; align-items: center; gap: 0.5rem; }
.updeck h3 { color: var(--grow); }
.downdeck h3 { color: var(--alarm); }
.updeck li, .downdeck li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.94rem; padding: 0.34rem 0;
}
.updeck li img, .downdeck li img { margin-top: 3px; flex-shrink: 0; }

.paytiles, .studiotiles {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin: 1.2rem 0;
}
@media (min-width: 560px) { .paytiles, .studiotiles { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .paytiles { grid-template-columns: repeat(5, 1fr); } .studiotiles { grid-template-columns: repeat(4, 1fr); } }
.tile { display: flex; align-items: center; justify-content: center; padding: 0.4rem; }
.tile img { width: 160px; height: 60px; object-fit: contain; }

.shotframe { margin: 1.4rem 0; }
.shotframe img { border-radius: var(--bend-lg); width: 100%; box-shadow: 0 16px 44px rgba(23,20,20,0.18); }
.shotframe figcaption { font-size: 0.8rem; color: var(--ink-low); margin-top: 0.6rem; }

.answerrow { display: grid; gap: 0.7rem; margin: 1.2rem 0; grid-template-columns: 1fr; }
@media (min-width: 700px) { .answerrow { grid-template-columns: repeat(3, 1fr); } }
.answercell {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--paper-warm); border-radius: 12px;
  padding: 0.95rem 1rem;
}
.answercell .a-tag { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.09em; color: var(--sea-deep); margin-bottom: 0.15rem; }
.answercell .a-val { font-size: 1.02rem; font-weight: 800; margin-bottom: 0.25rem; line-height: 1.3; }
.answercell small { font-size: 0.82rem; color: var(--ink-low); line-height: 1.45; display: block; }

.verifynote { display: flex; gap: 0.6rem; align-items: flex-start; margin: 1.1rem auto; font-size: 0.98rem; max-width: 74ch; }
.verifynote img { margin-top: 3px; flex-shrink: 0; }
.verifynote strong { color: var(--grow); }

.scoreboard { margin: 1.2rem auto; max-width: 860px; }
.scoreboard .scorerow { display: flex; align-items: center; gap: 1rem; padding: 0.5rem 0; }
.scoreboard .score-name { flex: 1; font-size: 0.93rem; font-weight: 600; color: var(--ink-mid); }
.scoreboard .score-bar { flex: 2; height: 9px; background: var(--paper-mist); border-radius: 999px; overflow: hidden; display: flex; }
.scoreboard .score-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--sea-bright), var(--sea-deep)); }
.scoreboard .scorerow:first-child .score-fill { background: linear-gradient(90deg, var(--coin-soft), var(--coin)); }
.scoreboard .score-num { width: 2.6rem; text-align: right; font-weight: 800; font-size: 0.95rem; }

.finalword {
  background: linear-gradient(100deg, var(--sea-wash) 0%, #f0f9ff 60%, #fdf6e7 100%);
  padding: 1.6rem 0;
  margin-top: 1.4rem;
}
.finalword .strip-core { text-align: center; }
.finalword p { margin-left: auto; margin-right: auto; }
.finalword h3 { color: var(--sea-night); font-size: 1.3rem; }
.finalword p { max-width: 78ch; }
.finalword p:last-of-type { margin-bottom: 0; }

.byline-face { display: inline-block; width: 26px; height: 26px; border-radius: 50%; vertical-align: -7px; margin-right: 0.15rem; }
.byline-name { color: #d7dde2; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.byline-name:hover { color: #ffffff; }
.authorband {
  background:
    radial-gradient(50% 90% at 12% 0%, rgba(245,159,68,0.12) 0%, transparent 60%),
    radial-gradient(50% 90% at 88% 100%, rgba(0,114,195,0.1) 0%, transparent 60%),
    var(--paper-warm);
  padding: 2.6rem 0;
  text-align: center;
}
.authorband .author-face {
  width: 128px; height: 128px; border-radius: 50%;
  margin: 0 auto 1rem;
  border: 4px solid var(--paper);
  outline: 3px solid transparent;
  box-shadow: 0 0 0 3px var(--coin), 0 14px 34px rgba(23,20,20,0.18);
}
.author-name { font-size: 1.45rem; font-weight: 800; margin-bottom: 0.15rem; }
.author-role { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--sea-deep); margin-bottom: 0.9rem; }
.author-bio { font-size: 0.95rem; color: var(--ink-mid); max-width: 62ch; margin: 0 auto; }

.toolgrid { display: grid; grid-template-columns: 1fr; gap: 0.7rem; max-width: 1020px; margin: 1.2rem auto 0; }
@media (min-width: 620px) { .toolgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .toolgrid { grid-template-columns: 1fr 1fr 1fr; } }
.toolcell {
  display: flex; gap: 0.7rem; align-items: flex-start;
  background: var(--paper); border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.86rem; color: var(--ink-mid); line-height: 1.5;
}

.groundfloor { background: var(--night); color: #c3cad0; margin-top: 3rem; border-top: 3px solid var(--sea); }
.groundfloor-core {
  max-width: var(--wrap); margin: 0 auto; padding: 2.4rem 1.1rem 1rem;
  display: grid; gap: 2rem;
}
@media (min-width: 800px) { .groundfloor-core { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.groundfloor .ground-head { color: #ffffff; font-size: 0.95rem; font-weight: 800; margin-bottom: 0.7rem; }
.groundfloor p { font-size: 0.86rem; }
.groundfloor a { color: #9fc9e8; }
.groundfloor a:hover { color: #ffffff; }
.groundfloor li { padding: 0.22rem 0; font-size: 0.9rem; }
.ground-age {
  display: inline-block; border: 2px solid var(--coin); color: var(--coin);
  font-weight: 800; font-size: 0.95rem; border-radius: 6px;
  padding: 0.15rem 0.5rem; margin-bottom: 0.8rem;
}
.ground-legal {
  max-width: var(--wrap); margin: 0 auto; padding: 1.1rem;
  border-top: 1px solid var(--night-2);
  font-size: 0.79rem; color: #8d969d;
}
.ground-legal p { margin-bottom: 0.4rem; }
.ground-links { list-style: none; display: flex; flex-wrap: wrap; gap: 0.3rem 1.2rem; margin: 0 0 0.8rem; padding: 0; }
.ground-links li { padding: 0; font-size: 0.8rem; }
.lanternband .listlinks { margin-top: 1.2rem; }
.lanternband .listlink { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: #ffffff; }
.lanternband .listlink:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }
.lanternband .listlink small { color: #a9b4bc; }

.back-to-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 300;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--sea); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s var(--glide), transform 0.2s var(--glide);
  box-shadow: 0 6px 18px rgba(0,58,109,0.35);
}
.back-to-top img { filter: invert(1); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.listband {
  background:
    radial-gradient(60% 120% at 0% 0%, rgba(0,114,195,0.09) 0%, transparent 60%),
    radial-gradient(50% 100% at 100% 100%, rgba(245,159,68,0.14) 0%, transparent 60%),
    var(--paper-warm);
  border-bottom: 1px solid var(--line);
  padding: 2.4rem 0 2rem;
  text-align: center;
}
.listband h1 { font-size: clamp(1.5rem, 1rem + 1.6vw, 2.15rem); max-width: 26ch; margin: 0 auto 0.7rem; color: var(--ink); }
.list-intro { max-width: 68ch; margin: 0 auto 0.9rem; font-size: 1.02rem; color: var(--ink-mid); }
.listband .checkstamp { color: var(--ink-low); margin: 0 0 0.9rem; }
.listband .byline-name { color: var(--ink); }
.listband .byline-name:hover { color: var(--sea-deep); }
.list-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1.6rem; }
.list-facts span { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.83rem; font-weight: 700; color: var(--ink-mid); }
.list-facts img { opacity: 0.7; }

.pickrow { display: grid; gap: 0.8rem; margin: 1.4rem 0 0; grid-template-columns: 1fr; }
@media (min-width: 720px) { .pickrow { grid-template-columns: repeat(3, 1fr); } }
.pickcard {
  display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 0.9rem 1.1rem; color: var(--ink); text-align: center;
  transition: border-color 0.16s var(--glide), transform 0.16s var(--glide);
}
.pickcard:hover { border-color: var(--sea); transform: translateY(-2px); color: var(--ink); }
.pickcard .pick-for { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sea-deep); }
.pickcard img { width: 128px; height: 48px; border-radius: 8px; }
.pickcard strong { font-size: 1rem; }
.pickcard small { font-size: 0.8rem; color: var(--ink-low); line-height: 1.45; }

.listbody { display: grid; gap: 2.4rem; align-items: start; padding-top: 1.8rem; }
@media (min-width: 1020px) { .listbody { grid-template-columns: 220px minmax(0, 1fr); } }
.tocrail { display: none; }
@media (min-width: 1020px) {
  .tocrail { display: block; position: sticky; top: calc(var(--bar-h) + 20px); }
}
.tocrail p { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ink-low); margin-bottom: 0.5rem; }
.tocrail ol { counter-reset: rail; display: flex; flex-direction: column; gap: 2px; }
.tocrail a {
  counter-increment: rail; display: flex; gap: 0.55rem; align-items: baseline;
  font-size: 0.84rem; font-weight: 600; color: var(--ink-mid);
  padding: 0.38rem 0.55rem; border-radius: 7px; line-height: 1.3;
}
.tocrail a::before { content: counter(rail, decimal-leading-zero); font-size: 0.68rem; font-weight: 800; color: var(--coin-deep); flex-shrink: 0; }
.tocrail a:hover, .tocrail a.lit { background: var(--sea-wash); color: var(--sea-night); }
.listmain { min-width: 0; }
.listmain h2 { text-align: center; margin-bottom: 1rem; }
.listmain .chapter { padding: 2rem 0 0.6rem; }
.listmain .chapter.tinted { background: none; }
.listmain > .chapter:first-child { padding-top: 0; }

.rankdeck { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 1.2rem; }
.rankcard {
  border: 1px solid var(--line); border-radius: var(--bend-lg);
  background: var(--paper); overflow: hidden;
}
.rank-top {
  display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 0.9rem 1rem;
  padding: 1.1rem 1.2rem 0.9rem; border-bottom: 1px solid var(--line);
  background: var(--paper-warm);
}
.rank-medal {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 800; color: #ffffff;
  background: linear-gradient(135deg, var(--night-2), var(--night));
}
.rankcard[data-rank="1"] .rank-medal { background: linear-gradient(135deg, var(--coin-soft), var(--coin-deep)); color: #3a2400; }
.rankcard[data-rank="2"] .rank-medal { background: linear-gradient(135deg, #e6e6e6, #9a9a9a); color: #262626; }
.rankcard[data-rank="3"] .rank-medal { background: linear-gradient(135deg, #e9b48a, #9c5a2b); }
.rank-top img.rank-crest { width: 128px; height: 48px; border-radius: 8px; }
.rank-name { min-width: 0; }
.rank-name h3 { margin: 0 0 0.15rem; font-size: 1.15rem; }
.rank-name .rank-for { font-size: 0.86rem; color: var(--ink-mid); margin: 0; }
.rank-score { display: flex; align-items: center; gap: 0.5rem; grid-column: 1 / -1; font-size: 0.8rem; font-weight: 700; color: var(--ink-low); }
@media (min-width: 720px) {
  .rank-top { grid-template-columns: auto auto 1fr auto; }
  .rank-score { grid-column: auto; }
}
.rank-score .scorering { width: 50px; height: 50px; }
.rank-score .scorering .ring-track { stroke: var(--paper-mist); }
.rank-score .scorering .ring-num strong { font-size: 0.95rem; color: var(--coin-deep); }
.rank-score .scorering .ring-num span { display: none; }
.rank-body { padding: 1.1rem 1.2rem 1.2rem; }
.rank-body p { font-size: 0.95rem; color: var(--ink-mid); }
.factrow { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 0.9rem; }
.factchip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; font-weight: 700; color: var(--ink);
  background: var(--paper-warm); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.3rem 0.7rem;
}
.factchip.good { background: var(--grow-wash); border-color: #b7e5c3; color: #0e5426; }
.factchip.bad { background: var(--alarm-wash); border-color: #f5c2c5; color: #9f1620; }
.factchip.gold { background: #fcf4d6; border-color: #f3dfa0; color: #7a5308; }
.plusminus { display: grid; gap: 0.3rem 2rem; margin: 0.9rem 0 1rem; }
@media (min-width: 640px) { .plusminus { grid-template-columns: 1fr 1fr; } }
.plusline, .minusline { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.88rem; color: var(--ink-mid); padding: 0.2rem 0; }
.plusline img, .minusline img { margin-top: 3px; flex-shrink: 0; }
.rank-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.4rem; margin-top: 0.4rem; }
.rank-cta .claimbtn { font-size: 0.96rem; padding: 0.7rem 1.7rem; }
.rank-cta .reviewlink { font-size: 0.88rem; font-weight: 700; }
.rank-body .termsline { color: var(--ink-low); margin-top: 0.8rem; max-width: none; }
.rankcard .shotframe { margin: 1.1rem 0 1rem; }

.boardwrap { overflow-x: auto; margin: 1.2rem 0; -webkit-overflow-scrolling: touch; }
.compareboard { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 640px; }
.compareboard th, .compareboard td { padding: 0.65rem 0.7rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compareboard th { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-low); background: var(--paper-warm); }
.compareboard td:first-child { font-weight: 800; white-space: nowrap; }
.compareboard tbody th { font-size: inherit; font-weight: 800; letter-spacing: 0; text-transform: none; color: var(--ink); background: none; }
.compareboard td .sub { display: block; font-size: 0.76rem; font-weight: 500; color: var(--ink-low); }
.compareboard.tightboard { min-width: 0; }
.compareboard.tightboard td:first-child { white-space: normal; }
.compareboard.rangeboard td:nth-child(2) { white-space: nowrap; }
.compareboard tr:hover td { background: #fbf9f8; }
.boardnote { font-size: 0.8rem; color: var(--ink-low); text-align: center; max-width: 70ch; margin: 0 auto 0.5rem; }

.criteriagrid { display: grid; gap: 0.8rem; margin: 1.2rem 0; grid-template-columns: 1fr; }
@media (min-width: 620px) { .criteriagrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .criteriagrid { grid-template-columns: 1fr 1fr 1fr; } }
.criterion { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.88rem; color: var(--ink-mid); line-height: 1.5; }
.criterion .term-ico { margin-top: 1px; }
.criterion strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }

.safeband {
  background: var(--sea-wash); border-radius: var(--bend-lg);
  padding: 1.3rem 1.4rem; margin: 1.6rem 0 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem 1.6rem;
  text-align: center;
}
.safeband p { margin: 0; font-size: 0.9rem; color: var(--sea-night); max-width: 60ch; }
.safeband a { font-weight: 700; white-space: nowrap; }
.safeband .agechip { border-color: var(--sea-night); color: var(--sea-night); }

.listlinks { display: grid; gap: 0.7rem; margin: 1.2rem 0 0; grid-template-columns: 1fr; }
@media (min-width: 640px) { .listlinks { grid-template-columns: 1fr 1fr; } }
@media (min-width: 940px) { .listlinks { grid-template-columns: repeat(3, 1fr); } }
.listlink {
  display: flex; gap: 0.7rem; align-items: center;
  border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem 0.9rem;
  color: var(--ink); font-size: 0.9rem; font-weight: 700;
  transition: border-color 0.16s var(--glide);
}
.listlink:hover { border-color: var(--sea); color: var(--ink); }
.listlink small { display: block; font-weight: 500; color: var(--ink-low); font-size: 0.78rem; }

.alsoranked { border-top: 1px solid var(--line); padding: 1.6rem 0 0.4rem; }
.alsoranked p { text-align: center; font-size: 0.9rem; color: var(--ink-mid); max-width: 70ch; margin: 0 auto 0.8rem; }
.alsoranked-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.alsoranked a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.42rem 0.9rem 0.42rem 0.45rem;
  font-size: 0.86rem; font-weight: 700; color: var(--ink); background: var(--paper);
  transition: border-color 0.16s var(--glide);
}
.alsoranked a:hover { border-color: var(--sea); color: var(--ink); }
.alsoranked a b {
  display: inline-grid; place-items: center; min-width: 1.9em; height: 1.9em; padding: 0 0.35em;
  border-radius: 999px; background: var(--sea-wash); color: var(--sea-deep); font-size: 0.78rem; font-weight: 800;
}

.payoutband {
  position: relative; color: #ffffff; padding: 2.2rem 0 2.8rem; overflow: hidden;
  background:
    linear-gradient(97deg, rgba(21,25,31,0.97) 0%, rgba(21,25,31,0.92) 42%, rgba(21,25,31,0.66) 70%, rgba(21,25,31,0.34) 100%),
    var(--backdrop) right 35% / cover no-repeat;
}
.payoutband .fadecut {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9)); pointer-events: none;
}
.payout-inner { position: relative; display: grid; gap: 2.2rem; align-items: center; }
@media (min-width: 1020px) { .payout-inner { grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr); gap: 3rem; } .clockboard { justify-self: end; } }
.payout-flow { display: flex; flex-direction: column; gap: 1rem; max-width: 640px; margin: 0 auto; text-align: center; align-items: center; }
@media (min-width: 1020px) { .payout-flow { margin: 0; text-align: left; align-items: stretch; } }
.payout-flow h1 { font-size: clamp(1.7rem, 1.1rem + 1.7vw, 2.3rem); line-height: 1.15; letter-spacing: -0.01em; color: #ffffff; margin: 0; text-wrap: balance; }
.payout-flow h1 .goldtext {
  background: linear-gradient(100deg, var(--coin-soft) 0%, var(--coin) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.payout-lead { font-size: 1.02rem; line-height: 1.65; color: #c9d1d8; margin: 0; max-width: 56ch; }
.payout-flow .checkstamp { color: #a9b4bc; margin: 0; }
.payout-flow .byline-name { color: #ffffff; }
.payout-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; margin-top: 0.3rem; width: 100%; }
.payout-point { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; font-size: 0.82rem; line-height: 1.45; color: #c9d1d8; text-align: center; }
.payout-point img { flex-shrink: 0; filter: invert(1); opacity: 0.8; }
@media (min-width: 1020px) {
  .payout-point { flex-direction: row; align-items: flex-start; gap: 0.6rem; text-align: left; }
  .payout-point img { margin-top: 3px; }
}
.payout-point strong { display: block; font-size: 1.05rem; color: #ffffff; line-height: 1.2; margin-bottom: 0.1rem; }

.clockboard {
  position: relative; width: 100%; max-width: 540px; justify-self: center;
  background: linear-gradient(160deg, rgba(30,36,44,0.97) 0%, rgba(22,27,33,0.97) 100%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 1.2rem 1.25rem 1.1rem;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.09);
}
.clockboard::before {
  content: ""; position: absolute; inset: -1px; border-radius: 21px; padding: 1px;
  background: linear-gradient(140deg, rgba(245,159,68,0.55), transparent 35%, transparent 70%, rgba(51,177,255,0.5));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.clock-head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
.clock-art { width: 84px; height: 84px; flex-shrink: 0; filter: drop-shadow(0 10px 16px rgba(0,0,0,0.55)); }
.clock-head strong { display: block; font-size: 1.05rem; line-height: 1.25; color: #ffffff; }
.clock-head small { display: block; font-size: 0.78rem; line-height: 1.45; color: #aab6c0; margin-top: 0.2rem; }
.clock-rows { display: flex; flex-direction: column; gap: 0.2rem; }
.clock-row {
  display: grid; grid-template-columns: 1.3rem 58px minmax(0, 1fr) auto; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.5rem; border-radius: 10px; color: #dfe5e9; font-size: 0.82rem; font-weight: 600;
  transition: background 0.16s var(--glide);
}
.clock-row:hover { background: rgba(255,255,255,0.08); color: #ffffff; }
.clock-row b { font-size: 0.7rem; font-weight: 800; color: #8fa0ae; text-align: center; }
.clock-row img { width: 58px; height: 22px; border-radius: 5px; object-fit: cover; }
.clock-track { height: 8px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.clock-fill { display: block; height: 100%; width: var(--clock, 50%); border-radius: 999px; background: linear-gradient(90deg, var(--coin-soft), var(--coin)); }
.clock-time { font-size: 0.8rem; font-weight: 800; color: #ffffff; white-space: nowrap; text-align: right; min-width: 6.4em; }
.clock-foot { margin: 0.8rem 0 0; font-size: 0.7rem; line-height: 1.5; color: #8fa0ae; }

.speeddeck { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.4rem; }
.speedcard {
  border: 1px solid var(--line); border-radius: var(--bend-lg); background: var(--paper);
  overflow: hidden; box-shadow: 0 12px 34px rgba(23,20,20,0.07);
}
@media (min-width: 900px) { .speedcard { display: grid; grid-template-columns: 312px minmax(0, 1fr); } }
.speed-side { display: flex; flex-direction: column; background: var(--paper-warm); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; margin: 1rem 1rem 0; }
@media (min-width: 900px) { .speed-side { margin: 1rem 0 1rem 1rem; align-self: start; } }
.speed-facts { margin: 0 1rem; padding: 0.8rem 0 1rem; border-top: 1px solid var(--line); display: grid; gap: 0.4rem; }
.speed-facts div { display: flex; justify-content: space-between; gap: 0.8rem; font-size: 0.76rem; line-height: 1.4; }
.speed-facts dt { color: var(--ink-low); flex-shrink: 0; }
.speed-facts dd { margin: 0; color: var(--ink); font-weight: 600; text-align: right; }
.speed-shotwrap { position: relative; background: var(--night); }
.speed-shot { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: top; }
.speed-medal {
  position: absolute; top: 0.7rem; left: 0.7rem; width: 2.4rem; height: 2.4rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.05rem; font-weight: 800; color: var(--ink);
  background: var(--paper); border: 2px solid var(--line-deep); box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.speedcard[data-rank="1"] .speed-medal { background: linear-gradient(145deg, var(--coin-soft), var(--coin)); border-color: transparent; }
.speedcard[data-rank="2"] .speed-medal { background: linear-gradient(145deg, #f2f2f2, #c2c6cc); border-color: transparent; }
.speedcard[data-rank="3"] .speed-medal { background: linear-gradient(145deg, #e4b07e, #b36a14); border-color: transparent; color: #ffffff; }
.speed-clock { padding: 0.9rem 1rem 0.6rem; }
.speed-clock strong { display: block; font-size: 1.75rem; font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; color: var(--sea-night); }
.speed-clock small { display: block; font-size: 0.76rem; line-height: 1.45; color: var(--ink-low); margin-top: 0.3rem; }
.speed-methods { display: flex; flex-wrap: wrap; gap: 0.55rem; padding: 0.4rem 1rem 1rem; }
.speed-method { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; width: 82px; }
.speed-method img { width: 82px; height: 31px; border-radius: 6px; border: 1px solid var(--line); background: #ffffff; object-fit: cover; }
.speed-method small { font-size: 0.64rem; line-height: 1.3; color: var(--ink-mid); text-align: center; }
.speed-nomethods { padding: 0 1rem 1rem; font-size: 0.76rem; line-height: 1.45; color: var(--ink-low); }
.speed-body { padding: 1.2rem 1.3rem 1.3rem; min-width: 0; }
.speed-title { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.speed-title h3 { margin: 0; font-size: 1.35rem; line-height: 1.2; }
.speed-for { margin: 0.2rem 0 0; font-size: 0.92rem; color: var(--ink-mid); }
.speed-title .rank-score { margin-left: auto; }
.speed-body .termsline { color: var(--ink-low); max-width: none; margin-top: 0.9rem; }

.artsplit { display: grid; gap: 1.3rem; align-items: center; margin-bottom: 1.3rem; }
@media (min-width: 760px) {
  .artsplit { grid-template-columns: 220px minmax(0, 1fr); gap: 2rem; }
  .artsplit.art-right { grid-template-columns: minmax(0, 1fr) 220px; }
  .artsplit.art-right .art-tile { order: 2; }
}
.art-tile { display: block; width: 100%; max-width: 240px; margin: 0 auto; filter: drop-shadow(0 18px 26px rgba(23,20,20,0.28)); }
.artsplit h2 { margin-top: 0; }
.artsplit .leadnote { margin-bottom: 0; }
@media (min-width: 760px) {
  .artsplit h2, .artsplit .leadnote { text-align: left; margin-left: 0; margin-right: 0; }
  .artsplit .leadnote { max-width: none; }
}
.methodgrid { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .methodgrid { grid-template-columns: 1fr 1fr; } .methodcard:last-child:nth-child(odd) { grid-column: 1 / -1; } }
.methodcard { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 0.9rem; align-items: center; border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem 0.9rem; }
.methodcard img { width: 96px; height: 36px; border-radius: 6px; border: 1px solid var(--line); background: #ffffff; object-fit: cover; }
.methodcard strong { display: block; font-size: 0.92rem; }
.methodcard span { display: block; font-size: 0.8rem; line-height: 1.45; color: var(--ink-mid); margin-top: 0.15rem; }
.methodcard .m-time { color: var(--sea-deep); font-weight: 700; }

.foyer {
  position: relative; color: #ffffff; padding: 3.2rem 0 3.4rem; overflow: hidden;
  background:
    linear-gradient(100deg, rgba(21,25,31,0.97) 0%, rgba(21,25,31,0.93) 45%, rgba(21,25,31,0.72) 72%, rgba(21,25,31,0.45) 100%),
    var(--backdrop) right 35% / cover no-repeat;
}
.foyer-inner { display: grid; gap: 2.4rem; align-items: center; }
@media (min-width: 1020px) { .foyer-inner { grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: 3.5rem; } }
.foyer-flow { display: flex; flex-direction: column; gap: 1.2rem; max-width: 680px; margin: 0 auto; text-align: center; align-items: center; }
@media (min-width: 1020px) { .foyer-flow { margin: 0; text-align: left; align-items: flex-start; } }
.foyer-flow h1 { font-size: clamp(2.1rem, 1.2rem + 2.9vw, 3.4rem); line-height: 1.06; letter-spacing: -0.02em; margin: 0; color: #ffffff; text-wrap: balance; }
.foyer-flow h1 .goldtext {
  background: linear-gradient(100deg, var(--coin-soft) 0%, var(--coin) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.foyer-lead { font-size: 1.08rem; line-height: 1.65; color: #c9d1d8; margin: 0; max-width: 56ch; }
.foyer-ctas { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.8rem; }
@media (min-width: 1020px) { .foyer-ctas { justify-content: flex-start; } }
.ghostbtn {
  display: inline-flex; align-items: center; padding: 0.8rem 1.4rem; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.35); color: #ffffff; font-weight: 700;
  transition: border-color 0.16s var(--glide), background 0.16s var(--glide);
}
.ghostbtn:hover { border-color: #ffffff; background: rgba(255,255,255,0.08); color: #ffffff; }
.foyer-doors { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem 0.6rem; width: 100%; max-width: 560px; justify-self: center; }
@media (min-width: 1020px) { .foyer-doors { justify-self: end; } }
@media (max-width: 419px) { .foyer-doors { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.door { display: flex; flex-direction: column; align-items: center; gap: 0.55rem; padding: 0.4rem 0.3rem; text-align: center; color: #ffffff; transition: transform 0.18s var(--glide); }
.door:hover { color: #ffffff; transform: translateY(-4px); }
.door img { width: 96px; height: 96px; filter: drop-shadow(0 16px 22px rgba(0,0,0,0.6)); transition: filter 0.18s var(--glide); }
.door:hover img { filter: drop-shadow(0 16px 22px rgba(0,0,0,0.6)) drop-shadow(0 0 18px rgba(245,159,68,0.45)); }
.door strong { font-size: 0.95rem; line-height: 1.2; }
.door small { font-size: 0.74rem; line-height: 1.3; color: #a9b4bc; }

.crestshelf, .prizewing, .listwing, .methodband, .helpband, .pressband { padding: 3.2rem 0; }
.front-h2 { text-align: center; font-size: clamp(1.4rem, 1rem + 1.2vw, 1.9rem); margin: 0 0 0.6rem; }
.front-intro { text-align: center; max-width: 70ch; margin: 0 auto 1.8rem; color: var(--ink-mid); line-height: 1.6; }

.crest-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 640px) { .crest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .crest-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.crestcard {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.45rem;
  padding: 0.9rem 0.8rem 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper);
  transition: border-color 0.16s var(--glide), transform 0.16s var(--glide);
}
.crestcard:hover { border-color: var(--sea); transform: translateY(-2px); }
.crest-plate { display: block; width: 100%; aspect-ratio: 8 / 3; border-radius: 10px; overflow: hidden; }
.crest-plate img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.crestcard h3 { margin: 0.2rem 0 0; font-size: 0.98rem; line-height: 1.2; }
.crest-score { display: inline-flex; align-items: baseline; gap: 0.35rem; padding: 0.2rem 0.65rem; border-radius: 999px; background: var(--sea-wash); color: var(--sea-deep); font-size: 0.76rem; font-weight: 700; }
.crest-score b { font-size: 1rem; font-weight: 800; }
.crest-line { margin: 0; font-size: 0.78rem; line-height: 1.45; color: var(--ink-mid); }
.crest-link { margin-top: auto; font-size: 0.8rem; font-weight: 700; color: var(--sea-deep); padding: 0.45rem 0.95rem; border: 1px solid var(--line-deep); border-radius: 999px; transition: border-color 0.16s var(--glide), background 0.16s var(--glide); }
.crest-link:hover { border-color: var(--sea); background: var(--sea-wash); color: var(--sea-deep); }

.wingpair { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin-bottom: 1.4rem; }
@media (min-width: 900px) { .wingpair { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }
.wing-card { border: 1px solid var(--line); border-radius: var(--bend-lg); background: var(--paper); padding: 1.4rem 1.5rem; }
.wing-story { display: flex; flex-direction: column; gap: 0.7rem; }
.wing-art { width: 132px; height: 132px; filter: drop-shadow(0 12px 18px rgba(23,20,20,0.25)); }
.wing-story h3 { margin: 0.2rem 0 0; font-size: 1.2rem; line-height: 1.25; }
.wing-story p { margin: 0; font-size: 0.92rem; line-height: 1.6; color: var(--ink-mid); }
.wing-link { font-weight: 700; color: var(--sea-deep); }
.wing-data h3 { margin: 0 0 0.25rem; font-size: 1.05rem; }
.wing-sub { margin: 0 0 1rem; font-size: 0.82rem; color: var(--ink-low); }
.mixchart { display: grid; gap: 0.7rem; }
.mix-row { display: grid; grid-template-columns: minmax(0, 1fr) 2rem; gap: 0.35rem 0.6rem; align-items: end; }
.mix-row > span:first-child { display: block; font-size: 0.86rem; font-weight: 700; line-height: 1.25; }
.mix-row small { display: block; font-size: 0.74rem; font-weight: 500; color: var(--ink-low); margin-top: 0.1rem; }
.mix-row b { font-size: 1.05rem; font-weight: 800; color: var(--coin-deep); text-align: right; }
.mix-track { grid-column: 1 / -1; display: block; height: 10px; border-radius: 999px; background: var(--paper-mist); overflow: hidden; }
.mix-fill { display: block; height: 100%; width: var(--mix, 50%); border-radius: 999px; background: linear-gradient(90deg, var(--coin-soft), var(--coin)); }
.wing-stat { margin: 1.1rem 0 0; padding-top: 0.9rem; border-top: 1px solid var(--line); font-size: 0.86rem; line-height: 1.55; color: var(--ink-mid); }
.wing-stat strong { color: var(--ink); }
.wing-card .method-steps { max-width: none; }

.steps-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.readstep { text-align: center; padding: 0.4rem 0.6rem; }
.readstep img { display: block; width: 132px; height: 132px; margin: 0 auto 0.6rem; filter: drop-shadow(0 12px 18px rgba(23,20,20,0.25)); }
.readstep strong { display: block; font-size: 1rem; margin-bottom: 0.35rem; }
.readstep p { margin: 0; font-size: 0.86rem; line-height: 1.55; color: var(--ink-mid); }

.wing-lists { display: grid; gap: 0.8rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .wing-lists { grid-template-columns: 1fr 1fr; } }
.listtile { display: flex; gap: 0.9rem; align-items: center; padding: 0.5rem 0.4rem; color: var(--ink); transition: transform 0.16s var(--glide); }
.listtile:hover { color: var(--ink); transform: translateY(-3px); }
.listtile:hover strong { color: var(--sea-deep); }
.listtile img { width: 78px; height: 78px; flex-shrink: 0; filter: drop-shadow(0 8px 14px rgba(23,20,20,0.25)); }
.listtile span { min-width: 0; }
.listtile strong { display: block; font-size: 0.98rem; }
.listtile small { display: block; font-size: 0.8rem; line-height: 1.45; color: var(--ink-low); margin-top: 0.15rem; }

.deskband { background: var(--paper-warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 3rem 0; }
.desk-inner { display: grid; gap: 2rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .desk-inner { grid-template-columns: 300px minmax(0, 1fr); gap: 3.2rem; } }
.desk-editor { text-align: center; }
.desk-editor img { width: 150px; height: 150px; border-radius: 50%; border: 4px solid #ffffff; box-shadow: 0 10px 28px rgba(23,20,20,0.15); }
.desk-editor strong { display: block; margin-top: 0.9rem; font-size: 1.1rem; }
.desk-role { display: block; font-size: 0.82rem; color: var(--ink-low); margin-top: 0.15rem; }
.desk-editor p { margin: 0.7rem auto 0; max-width: 40ch; font-size: 0.9rem; line-height: 1.6; color: var(--ink-mid); }
.desk-editor a { display: inline-block; margin-top: 0.8rem; font-weight: 700; color: var(--sea-deep); }
.desk-stance h2 { font-size: clamp(1.4rem, 1rem + 1.2vw, 1.9rem); margin: 0 0 0.5rem; text-align: center; }
.desk-stance > p { margin: 0 auto 1.4rem; max-width: 60ch; color: var(--ink-mid); line-height: 1.6; text-align: center; }
@media (min-width: 900px) { .desk-stance h2, .desk-stance > p { text-align: left; margin-left: 0; } }
.creed-grid { display: grid; gap: 1.2rem 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .creed-grid { grid-template-columns: 1fr 1fr; } }
.creed { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.75rem; align-items: start; }
.creed-obj { width: 48px; height: 48px; filter: drop-shadow(0 6px 10px rgba(23,20,20,0.25)); }
.creed strong { display: block; font-size: 0.98rem; margin-bottom: 0.25rem; }
.creed p { margin: 0; font-size: 0.86rem; line-height: 1.55; color: var(--ink-mid); }

.method-steps { list-style: none; counter-reset: step; padding: 0; margin: 0 auto; max-width: 760px; display: grid; gap: 1rem; }
.method-steps li { position: relative; padding-left: 3.2rem; font-size: 0.92rem; line-height: 1.55; color: var(--ink-mid); }
.method-steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2.3rem; height: 2.3rem; border-radius: 50%;
  display: grid; place-items: center; background: var(--sea-wash); color: var(--sea-deep); font-weight: 800;
}
.method-steps li strong { display: block; color: var(--ink); margin-bottom: 0.15rem; }

.helpband { background: var(--night); color: #ffffff; }
.helpband .front-h2 { color: #ffffff; }
.helpband .front-intro { color: #c9d1d8; }
.helpband a { color: #9fc9e8; }
.helpband a:hover { color: #ffffff; }

main :is(p, li, td, th, dd, figcaption, small) a:not(.claimbtn):not(.reviewlink):not(.listlink):not(.ghostbtn):not(.wing-link),
.termcell a, .warncard a, .criterion a, .methodcard a, .toolcell a, .groundfloor p a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.tocrail a, .sheet-grid a, .sheet-shelves a, .pocketnav a { text-decoration: none; }
.help-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .help-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.helpcell { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 1.1rem 1.2rem; }
.helpcell strong { display: block; color: var(--coin-soft); margin-bottom: 0.4rem; }
.helpcell p { margin: 0; font-size: 0.88rem; line-height: 1.55; color: #c9d1d8; }
.helpcell a { color: #9fd4f8; font-weight: 700; }
.helpcell a:hover { color: #ffffff; }

.safebandwrap { padding: 0 0 3rem; }

.press-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .press-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .press-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.presscard {
  display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--paper); color: var(--ink);
  transition: border-color 0.16s var(--glide), transform 0.16s var(--glide);
}
.presscard:hover { border-color: var(--sea); color: var(--ink); transform: translateY(-2px); }
.presscard img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center top; background: var(--night); }
.press-body { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.9rem 1rem 1rem; }
.presscard time { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-low); }
.presscard strong { font-size: 0.98rem; line-height: 1.3; color: var(--sea-deep); }
.presscard .press-body > span { font-size: 0.82rem; line-height: 1.5; color: var(--ink-mid); }
.crest-score { white-space: nowrap; }
@media (max-width: 479px) {
  .crest-score { font-size: 0.68rem; padding: 0.15rem 0.5rem; }
  .crest-score b { font-size: 0.9rem; }
}

.lanternband {
  position: relative; color: #ffffff; padding: 2.4rem 0 2.8rem; overflow: hidden;
  background:
    linear-gradient(97deg, rgba(21,25,31,0.97) 0%, rgba(21,25,31,0.93) 45%, rgba(21,25,31,0.7) 72%, rgba(21,25,31,0.42) 100%),
    var(--backdrop) right 35% / cover no-repeat;
}
.lanternband .fadecut {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.9)); pointer-events: none;
}
.lantern-inner { position: relative; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1020px) { .lantern-inner { grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 3rem; } }
.lantern-flow { display: flex; flex-direction: column; gap: 1rem; max-width: 700px; margin: 0 auto; text-align: center; align-items: center; }
@media (min-width: 1020px) { .lantern-flow { margin: 0; text-align: left; align-items: stretch; } }
.lantern-flow h1 { font-size: clamp(1.7rem, 1.1rem + 1.7vw, 2.35rem); line-height: 1.15; letter-spacing: -0.01em; color: #ffffff; margin: 0; text-wrap: balance; }
.lantern-flow h1 .goldtext {
  background: linear-gradient(100deg, var(--coin-soft) 0%, var(--coin) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lantern-lead { font-size: 1.04rem; line-height: 1.65; color: #c9d1d8; margin: 0; max-width: 58ch; }
.lantern-flow .checkstamp { color: #a9b4bc; margin: 0; }
.lantern-flow .byline-name { color: #ffffff; }
.lantern-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 1.2rem; margin-top: 0.3rem; width: 100%; }
.lantern-fact { display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.82rem; line-height: 1.45; color: #c9d1d8; text-align: center; }
@media (min-width: 1020px) { .lantern-fact { text-align: left; } }
.lantern-fact strong { display: block; font-size: 1.3rem; color: var(--coin-soft); line-height: 1.15; }
.lantern-art { display: block; width: min(58vw, 250px); height: auto; margin: 0 auto; filter: drop-shadow(0 26px 36px rgba(0,0,0,0.6)); }
@media (min-width: 1020px) { .lantern-art { width: 300px; justify-self: center; } }

.guidebody { display: grid; gap: 2.4rem; align-items: start; padding-top: 1.8rem; }
@media (min-width: 1020px) { .guidebody { grid-template-columns: 220px minmax(0, 1fr); } }
.guidebody.solo { max-width: 860px; }
@media (min-width: 1020px) { .guidebody.solo { grid-template-columns: minmax(0, 1fr); } }
.guidemain { min-width: 0; }
.guidemain .chapter { padding: 1.7rem 0 0.4rem; }
.guidemain > .chapter:first-child { padding-top: 0; }
.guidemain h2 { font-size: 1.5rem; margin-bottom: 0.8rem; }
.guidemain h3 { font-size: 1.12rem; margin: 1.3rem 0 0.45rem; }
.guidemain p { font-size: 1rem; line-height: 1.7; max-width: 74ch; }
.guidemain .leadnote { text-align: left; margin-left: 0; margin-right: 0; }
.guidemain ul.plainlist, .guidemain ol.numlist { padding-left: 1.3rem; max-width: 74ch; margin: 0 0 1rem; }
.guidemain ul.plainlist { list-style: disc; }
.guidemain ol.numlist { list-style: decimal; }
.guidemain ul.plainlist li, .guidemain ol.numlist li { font-size: 1rem; line-height: 1.65; margin-bottom: 0.4rem; }
.guidemain ul.plainlist li::marker { color: var(--coin-deep); }
.guidemain ol.numlist li::marker { color: var(--sea-deep); font-weight: 800; }
.guidemain .artsplit { margin-bottom: 1rem; }
@media (min-width: 760px) { .guidemain .artsplit { grid-template-columns: 180px minmax(0, 1fr); } .guidemain .artsplit.art-right { grid-template-columns: minmax(0, 1fr) 180px; } .guidemain .art-tile { max-width: 190px; } }
.guidemain .termgrid { margin: 1rem 0 1.2rem; }
.guidemain .boardwrap { margin: 1rem 0 1.3rem; }
.guidemain .compareboard td { line-height: 1.5; }
.guidemain .answerrow { margin: 1rem 0 1.3rem; }
.guidemain .steprow { margin: 1.1rem 0 1.4rem; }
.guidemain .warnpair { margin: 1rem 0 1.3rem; }

.quoteslab {
  background: var(--paper-warm); border-radius: 14px; padding: 1.1rem 1.3rem; margin: 1rem 0 1.3rem; max-width: 78ch;
}
.quoteslab p { margin: 0 0 0.55rem; font-size: 0.98rem; line-height: 1.65; }
.quoteslab p:last-child { margin-bottom: 0; }
.quoteslab .quote-src { font-size: 0.8rem; color: var(--ink-low); font-weight: 600; }
.quoteslab .quote-src a { font-weight: 700; }

.chartwrap { max-width: 660px; margin: 1rem 0 1.4rem; }
.chart-title { font-size: 0.98rem; font-weight: 800; margin: 0 0 0.2rem; }
.chart-sub { font-size: 0.8rem; color: var(--ink-low); margin: 0 0 0.9rem; }
.chart-foot { font-size: 0.78rem; color: var(--ink-low); margin: 0.7rem 0 0; }

.sourcelist { counter-reset: src; list-style: none; padding: 0; margin: 0.6rem 0 0; max-width: 78ch; display: grid; gap: 0.5rem; }
.sourcelist li { position: relative; padding-left: 2.2rem; font-size: 0.9rem; line-height: 1.55; color: var(--ink-mid); }
.sourcelist li::before {
  counter-increment: src; content: counter(src);
  position: absolute; left: 0; top: 0.15rem; width: 1.6rem; height: 1.6rem; border-radius: 50%;
  background: var(--sea-wash); color: var(--sea-deep); font-size: 0.74rem; font-weight: 800; display: grid; place-items: center;
}
.sourcelist a { font-weight: 700; }

.listlink img.link-obj { width: 46px; height: 46px; flex-shrink: 0; filter: drop-shadow(0 6px 10px rgba(23,20,20,0.25)); }

.shelfband { padding: 2.2rem 0 0.4rem; }
.shelf-h2 { font-size: 1.35rem; margin: 1.5rem 0 0.25rem; }
.shelf-note { color: var(--ink-mid); max-width: 72ch; margin: 0 0 1rem; }
.guideshelf { display: grid; gap: 1rem; grid-template-columns: 1fr; margin: 0.6rem 0 1.4rem; }
@media (min-width: 640px) { .guideshelf { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .guideshelf { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.guidecard {
  display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.2rem 1.2rem; background: var(--paper); color: var(--ink);
  transition: border-color 0.16s var(--glide), transform 0.16s var(--glide);
}
.guidecard:hover { border-color: var(--sea); transform: translateY(-2px); color: var(--ink); }
.guidecard img { width: 92px; height: 92px; filter: drop-shadow(0 10px 16px rgba(23,20,20,0.25)); }
.guidecard strong { font-size: 1.02rem; line-height: 1.3; color: var(--sea-deep); }
.guidecard span { font-size: 0.86rem; line-height: 1.5; color: var(--ink-mid); }
.guidecard small { margin-top: auto; padding-top: 0.3rem; font-size: 0.78rem; font-weight: 700; color: var(--sea-deep); }
