:root {
  --c-primary: #1e3a6e;
  --c-primary-600: #16294f;
  --c-text: #24304e;
  --c-text-sub: #858ba1;
  --c-border: #e8e4d5;
  --c-surface: #ffffff;
  --c-bg: #f6f4eb;
  --grad-main: linear-gradient(135deg, #1c3667 0%, #27488a 55%, #2f5fae 100%);
  /* デザインシート（シンプル版）パレット */
  --navy-deep: #0A1840;
  --navy-mid: #102554;
  --gold: #D4AF37;
  --gold-light: #F5D58A;
  --ivory: #FFF6E5;
  --grad-gold: linear-gradient(180deg, #F5D58A 0%, #E9C25C 48%, #D4AF37 100%);
  --grad-navy-tile: linear-gradient(165deg, rgba(16, 37, 84, 0.9), rgba(10, 24, 64, 0.94));
  --font-serif: 'Noto Serif JP', 'Yu Mincho', serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(25, 48, 105, 0.07);
  --shadow-md: 0 10px 30px rgba(28, 45, 95, 0.11);
  --shadow-lg: 0 18px 44px rgba(25, 48, 105, 0.16);
}

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

body {
  color: var(--c-text);
  background-color: var(--navy-deep);
  font-family: 'Noto Sans JP', system-ui, -apple-system, "Segoe UI", "Hiragino Sans", sans-serif;
  min-height: 100vh;
}

/* 背景レイヤー（iOSのbackground-attachment:fixed問題を避けるため固定擬似要素で敷く） */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('https://ptx-media-storage.imgix.net/manual/shindan2-bg-v2-mobile.webp');
  background-size: cover;
  background-position: center bottom; /* 金の波は下側に寄せて見せる */
}

/* 横長の広い画面（PC・タブレット横）は横長背景に切り替え */
@media (orientation: landscape) and (min-width: 900px) {
  body::before {
    background-image: url('https://ptx-media-storage.imgix.net/manual/shindan2-bg-v2-desktop.webp');
  }
}

/* ページラッパー（スマホ幅基準） */
.page {
  max-width: 560px;
  margin: 0 auto;
  padding: 0.9rem 1.1rem 3.5rem;
}

/* === ブランドヘッダー（金文字タイトルの縦積みロックアップ） === */
.brand-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.2rem 1rem;
  padding: 0.5rem 0 0.5rem;
}
.brand-name { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.bn-large {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 900; letter-spacing: 0.06em;
  line-height: 1.25;
  background: linear-gradient(180deg, #FFFBE9 18%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 175, 55, 0.35));
}
/* 「全20問」の金リボン（gpt-image-2 生成素材） */
.bn-edition {
  display: inline-block;
  font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.24em; text-indent: 0.24em;
  color: #1d2a52;
  background: url('https://ptx-media-storage.imgix.net/manual/shindan2-ribbon-gold.webp') center / 100% 100% no-repeat;
  padding: 0.5em 2.6em 0.62em;
}
.brand-sub {
  flex-basis: 100%;
  text-align: center;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  color: rgba(255, 246, 229, 0.85);
  font-weight: 500;
}
/* ヘッダー下の金の飾り仕切り */
.brand-head::after {
  content: '';
  flex-basis: 100%;
  height: 16px;
  margin-top: 0.5rem;
  background: url('https://ptx-media-storage.imgix.net/manual/shindan2-divider.webp') center / contain no-repeat;
  opacity: 0.9;
}

/* --- 回答画面のヘッダー圧縮 ---
 * 回答中はブランド表示より「はい／いいえ」の押しやすさを優先する。
 * リボン（全20問）と説明文を隠し、タイトルを小さくして、質問と回答ボタンを画面上部に引き上げる。 */
body[data-screen="question"] .brand-head { padding: 0.35rem 0 0.2rem; }
body[data-screen="question"] .bn-large { font-size: 1.32rem; }
body[data-screen="question"] .brand-name { gap: 0.15rem; }
body[data-screen="question"] .bn-edition,
body[data-screen="question"] .brand-sub { display: none; }
body[data-screen="question"] .brand-head::after { height: 14px; margin-top: 0.45rem; }

/* === ボタン標準 === */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; font-size: 0.93rem; font-weight: 700;
  border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s; font-family: inherit;
}
.btn-primary { background: var(--grad-main); color: #fff; box-shadow: 0 6px 18px rgba(39, 72, 138, 0.35); }
.btn-primary:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(39, 72, 138, 0.45); }
.btn-primary:disabled { background: #e5e1d3; color: #a6acbe; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-back { background: rgba(255,255,255,.85); color: #5d6a8e; border-color: #d9d0b4; }
.btn-back:hover:not(:disabled) { background: #fff; }
.btn-danger { background: #dc2626; color: #fff; }
.btn-danger:hover:not(:disabled) { background: #b91c1c; }

.input, .textarea, .select {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  font-size: 0.95rem; background: #fff; font-family: inherit; color: var(--c-text);
  transition: border-color .15s, box-shadow .15s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 110, .15);
}
.field { margin-bottom: 1rem; }
.field-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.modal { padding: 0; border: none; background: transparent; }
.modal::backdrop { background: rgba(30, 40, 65, 0.45); }
.modal-inner { background: #fff; border-radius: var(--r-lg); width: min(560px, 92vw); box-shadow: var(--shadow-lg); }
.modal-inner.small { width: min(420px, 92vw); }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.25rem; border-bottom: 1px solid var(--c-border); }
.modal-title { font-weight: 700; font-size: 1.05rem; }
.modal-close { background: transparent; border: none; cursor: pointer; color: var(--c-text-sub); font-size: 1.1rem; }
.modal-body { padding: 1.25rem; }
.modal-actions { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 1rem; }
.modal-actions .btn { border-radius: var(--r-md); }

.toast {
  background: #24304e; color: #fff;
  padding: 0.75rem 1.1rem; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); font-size: 0.9rem;
  animation: toast-in .2s ease;
  max-width: 360px;
}
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast.is-leaving { animation: toast-out .22s ease forwards; }
@keyframes toast-in { from { transform: translateY(8px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@keyframes toast-out { to { transform: translateY(8px); opacity: 0; } }

.spinner { display: inline-block; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes q-in { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }

/* =====================================================
 * スタート画面
 * ===================================================== */
.start-wrap > * { animation: rise .5s cubic-bezier(.22,.8,.36,1) both; }
.start-wrap > *:nth-child(1) { animation-delay: .02s; }
.start-wrap > *:nth-child(2) { animation-delay: .10s; }
.start-wrap > *:nth-child(3) { animation-delay: .18s; }

/* --- ヒーロー（紺タイル＋金縁: 中央寄せコピー） --- */
.card.start-hero {
  display: block;
  text-align: center;
  padding: 1.25rem 1.4rem;
  background: var(--grad-navy-tile);
  border: 1px solid rgba(212, 165, 61, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 26px rgba(212, 165, 61, 0.07);
  backdrop-filter: none;
}
.sh-title {
  font-family: var(--font-serif);
  font-size: 1.24rem; font-weight: 900; line-height: 1.85;
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.sh-bar {
  width: 58px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0.75rem auto 0;
}
.sh-lead {
  margin-top: 0.7rem;
  font-size: 0.8rem; line-height: 1.9;
  color: rgba(255, 249, 235, 0.78);
}
/* ゴールドの強調文字 */
.em-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 900;
}
@media (max-width: 390px) {
  .sh-title { font-size: 1.08rem; }
  .sh-lead { font-size: 0.73rem; }
}

/* --- 統計タイル（全20問・2択・その場で結果） --- */
.start-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem;
  margin-top: 0.85rem;
}
/* アーチ型の紺タイル＋大きな金線アイコン（デザインシート準拠） */
.stat-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1.15rem 0.3rem 0.85rem;
  background: var(--grad-navy-tile);
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 110px 110px 18px 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  backdrop-filter: none;
}
.stat-icon {
  display: flex; align-items: center; justify-content: center;
  font-size: 2.05rem;
  color: var(--gold-light);
}
.st-text {
  font-size: 0.76rem; font-weight: 700; line-height: 1.75;
  color: rgba(255, 246, 229, 0.88);
}
.st-big {
  font-size: 1.5rem; font-weight: 900;
  font-variant-numeric: tabular-nums;
  padding: 0 0.08em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (max-width: 390px) {
  .st-text { font-size: 0.68rem; }
  .st-big { font-size: 1.3rem; }
  .stat-icon { font-size: 1.7rem; }
}

/* --- CTAボタン --- */
.start-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
  padding: 1.1rem 1.6rem;
  border: 1px solid #a87f28; border-radius: 999px;
  background: var(--grad-gold);
  color: #14224a;
  font-size: 1.18rem; font-weight: 800; letter-spacing: 0.1em;
  font-family: inherit;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 0.6rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 4px 18px rgba(212, 165, 61, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform .18s, box-shadow .18s;
}
.start-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 6px 22px rgba(212, 165, 61, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6); }
.start-cta .cta-label { flex: 1; text-align: center; }
.start-cta i { font-size: 1.05rem; opacity: 0.95; }
/* ボタンの上を周期的に横切る光 */
.start-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: cta-shine 3.2s ease-in-out infinite;
}
@keyframes cta-shine { 0% { left: -60%; } 45%, 100% { left: 130%; } }

/* =====================================================
 * 質問画面
 * ===================================================== */
/* 「質問 1 / 20」＋金のプログレスバー（紺のピル型コンテナ） */
.progress-pill {
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(16, 37, 84, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 0.68rem 1.2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.progress-pill .pp-label {
  flex: none; font-size: 0.88rem; font-weight: 700;
  color: var(--ivory);
}
.progress-pill .pp-label b {
  font-size: 1.25rem; font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 0.15rem;
}
.progress-pill .pp-track {
  display: block;
  flex: 1; height: 8px; border-radius: 999px;
  background: rgba(10, 24, 64, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
}
.progress-pill .pp-fill {
  display: block;
  width: 0; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .3s ease;
}

/* 質問カード（明るいカード＋金の細枠＋濃紺文字。読みやすさ優先） */
.q-card {
  background: linear-gradient(180deg, #FFFDF6 0%, var(--ivory) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  padding: 1.05rem 1.4rem;
  margin-top: 1.15rem;
  text-align: center;
  animation: q-in .24s ease;
}
.q-text {
  font-size: 1.18rem; font-weight: 800; line-height: 2.05;
  color: #1c2b4a;
  min-height: 4.1em; /* 2行分。全20問が2行に収まるので、これで設問ごとの高さのガタつきは出ない */
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 390px) {
  .page { padding-left: 0.8rem; padding-right: 0.8rem; }
  .q-text { font-size: 1.04rem; }
}

/* --- はい／いいえの2択 --- */
/* テストの回答なので、どちらかに視線が引っ張られないよう2つは完全に同じ見た目にする */
.yn-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem;
  margin-top: 1.15rem;
}
.yn-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem;
  padding: 1.4rem 0.5rem 1.2rem;
  background: linear-gradient(180deg, #FFFDF6 0%, var(--ivory) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  cursor: pointer; font-family: inherit;
  transition: transform .16s, box-shadow .16s, border-color .16s, background .16s;
  -webkit-tap-highlight-color: transparent;
}
.yn-icon {
  font-size: 1.85rem;
  color: #b8912f;
  transition: color .16s;
}
.yn-label {
  font-family: var(--font-serif);
  font-size: 1.12rem; font-weight: 900; letter-spacing: 0.12em;
  color: #23355c;
  transition: color .16s;
}
.yn-btn:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.38); }
/* 押した瞬間だけ金で塗って、選んだことが分かるようにする（直後に次の設問へ進む） */
.yn-btn.is-picked {
  background: var(--grad-gold);
  border-color: #a8862a;
  transform: scale(1.04);
  box-shadow: 0 10px 26px rgba(168, 127, 40, 0.5);
}
.yn-btn.is-picked .yn-icon, .yn-btn.is-picked .yn-label { color: #14224a; }

.q-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.2rem;
}
.link-sub {
  background: none; border: none; cursor: pointer;
  color: #ffffff; opacity: 0.92; font-size: 0.82rem;
  text-decoration: underline; text-underline-offset: 3px; font-family: inherit;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.link-sub:disabled { opacity: 0.32; cursor: not-allowed; text-decoration: none; }

/* === 判定中 === */
.judging {
  text-align: center; padding: 4.5rem 1rem;
  animation: q-in .25s ease;
}
.judging .j-icon {
  width: 84px; height: 84px; margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: var(--grad-navy-tile);
  border: 1px solid rgba(212, 165, 61, 0.7);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), inset 0 0 18px rgba(212, 165, 61, 0.15);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }
.judging p { color: rgba(255, 249, 235, 0.88); font-weight: 700; }

/* =====================================================
 * 結果画面
 * ===================================================== */
.result-wrap > * { animation: rise .5s cubic-bezier(.22,.8,.36,1) both; }
.result-wrap > *:nth-child(1) { animation-delay: .02s; }
.result-wrap > *:nth-child(2) { animation-delay: .12s; }
.result-wrap > *:nth-child(3) { animation-delay: .22s; }
.result-wrap > *:nth-child(4) { animation-delay: .32s; }

/* --- ヒーローカード（結果発表の特別感） --- */
.result-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 2.2rem 1.4rem 2rem;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(111, 158, 214, 0.35), transparent 55%),
    radial-gradient(120% 100% at 0% 110%, rgba(201, 162, 75, 0.35), transparent 55%),
    linear-gradient(155deg, #14213f 0%, #1c3a75 52%, #3b62c9 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 20px 48px rgba(25, 48, 100, 0.42);
  color: #fff;
  backdrop-filter: none;
}
/* 表示時に一度だけ横切る光のスイープ */
.result-hero::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: hero-shine 1.4s ease-out 0.75s 1 both;
}
@keyframes hero-shine { to { left: 145%; } }
.rh-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.36em; text-indent: 0.36em;
  color: rgba(255, 255, 255, 0.72);
}
.rh-eyebrow .line { width: 36px; height: 1px; }
.rh-eyebrow .line.l { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65)); }
.rh-eyebrow .line.r { background: linear-gradient(270deg, transparent, rgba(255, 255, 255, 0.65)); }

/* 大きな点数表示 */
.rh-score {
  display: flex; align-items: baseline; justify-content: center; gap: 0.1rem;
  margin-top: 1rem;
}
.rh-score-num {
  font-family: var(--font-serif);
  font-size: 4.2rem; font-weight: 900; line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #FFFBE9 15%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 16px rgba(212, 175, 55, 0.45));
}
.rh-score-unit { font-size: 1.1rem; font-weight: 800; color: rgba(255, 255, 255, 0.78); margin-left: 0.15rem; }
.rh-score-max { font-size: 0.78rem; font-weight: 700; color: rgba(255, 255, 255, 0.55); margin-top: 0.45rem; letter-spacing: 0.06em; }

.rh-divider {
  width: 54px; height: 3px; border-radius: 999px;
  background: linear-gradient(90deg, #e2d7ae, #93c5fd);
  margin: 1.15rem auto 0;
}
.result-title {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 900; line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 1.05rem;
  text-shadow: 0 2px 20px rgba(120, 145, 200, 0.55);
}
.result-summary {
  color: rgba(255, 255, 255, 0.92); font-size: 0.9rem; line-height: 2.05;
  margin: 0.95rem auto 0;
  max-width: 30em;
}
@media (max-width: 390px) {
  .rh-score-num { font-size: 3.4rem; }
  .result-title { font-size: 1.3rem; }
}

/* --- 点数ゲージ --- */
.gauge-card { margin-top: 0.85rem; padding: 1.35rem 1.4rem 1.2rem; }
.gauge-head {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.9rem; font-weight: 900; color: var(--c-text);
  margin-bottom: 1rem;
}
.gauge-head i { color: #b8912f; }
.gauge-track {
  position: relative;
  height: 12px; border-radius: 999px;
  background: #eae7d9;
  border: 1px solid #ddd6c0;
  overflow: hidden;
}
.gauge-fill {
  display: block; height: 100%; border-radius: 999px;
  width: 0;
  background: linear-gradient(90deg, #E9C25C, #D4AF37);
  transition: width 1.1s cubic-bezier(.22,.8,.36,1);
}
.gauge-scale {
  display: flex; justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.7rem; font-weight: 700; color: var(--c-text-sub);
  font-variant-numeric: tabular-nums;
}
/* --- 判定の目安一覧 --- */
.bands-card { margin-top: 0.85rem; padding: 1.35rem 1.4rem; }
.bands-list { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.95rem; }
.band-row {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: #fbfaf4;
}
/* 自分が該当した帯だけ金で強調する */
.band-row.is-current {
  background: linear-gradient(180deg, #FFFBE9, var(--ivory));
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(168, 127, 40, 0.22);
}
.band-range {
  flex: none; width: 6.2em;
  font-size: 0.74rem; font-weight: 800; color: var(--c-text-sub);
  font-variant-numeric: tabular-nums;
}
.band-row.is-current .band-range { color: #a4832f; }
.band-name { font-size: 0.86rem; font-weight: 700; color: #3a4666; line-height: 1.6; }
.band-row.is-current .band-name { font-weight: 900; color: #1c2b4a; }
.band-mark { margin-left: auto; flex: none; color: var(--gold); font-size: 0.85rem; }

.result-actions { margin-top: 1.1rem; }
.result-actions .btn { width: 100%; padding: 0.95rem 1rem; }
