:root {
  color-scheme: dark;
  --bg: #0b1220;
  --surface: #131e31;
  --surface-2: #1a273d;
  --surface-3: #22314a;
  --line: #31415d;
  --text: #f7f9fc;
  --muted: #94a3b8;
  --accent: #f3d21b;
  --accent-ink: #131824;
  --green: #35c67a;
  --red: #ff5c68;
  --blue: #65a8ff;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  min-height: 100%;
  overscroll-behavior: none;
}

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 100% 0%, rgba(45, 72, 111, .28), transparent 34rem),
    var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

button, input, select, textarea { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }

.app-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: calc(68px + var(--safe-top));
  padding: calc(12px + var(--safe-top)) 16px 12px;
  background: rgba(11, 18, 32, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 3px;
  color: var(--accent);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
}

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 21px; line-height: 1.15; letter-spacing: -.02em; }
h2 { margin-bottom: 0; font-size: 24px; }
h3 { margin-bottom: 0; font-size: 17px; line-height: 1.2; }

.save-state {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
}

.save-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(53, 198, 122, .12);
}

.save-state.saving .save-dot { background: var(--accent); }

main {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 14px 12px calc(92px + var(--safe-bottom));
}

.view { animation: enter .18s ease-out; }
@keyframes enter { from { opacity: .2; transform: translateY(4px); } }

.session-panel,
.summary-panel,
.history-card,
.data-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(26, 39, 61, .96), rgba(19, 30, 49, .96));
  border-radius: 18px;
}

.session-panel { padding: 13px; }

.day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.day-head strong { display: block; margin-top: 3px; font-size: 18px; text-transform: capitalize; }
.day-kicker { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.day-save { color: var(--green); font-size: 10px; font-weight: 800; white-space: nowrap; }

.day-picker {
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 8px;
  align-items: end;
}

.day-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-3);
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
}

.session-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 10px;
}

.session-grid.single-row { grid-template-columns: 1fr 1fr; align-items: end; margin-top: 10px; }
.today-button { width: 100%; }

.session-extra {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(8, 15, 27, .28);
}
.session-extra > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.session-extra-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 10px 10px; }
.session-note { padding: 0 10px 10px; }
.session-note textarea { min-height: 62px; font-size: 14px; }

.field label {
  display: block;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: #0d1728;
  color: var(--text);
  padding: 10px 11px;
  font-size: 16px;
  transition: border-color .15s, box-shadow .15s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(101, 168, 255, .13);
}

textarea { min-height: 72px; resize: vertical; }

.session-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.button,
.chip,
.timer-presets button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  font-weight: 800;
}

.button.primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button.secondary {
  background: var(--surface-3);
  color: var(--text);
}

.button.danger {
  background: rgba(255, 92, 104, .12);
  color: #ff9ba2;
  border: 1px solid rgba(255, 92, 104, .35);
}

.button:active, .chip:active, .nav-item:active { transform: scale(.98); }

.summary-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 10px;
  overflow: hidden;
}

.summary-stat {
  padding: 12px 8px;
  text-align: center;
  background: rgba(8, 15, 27, .24);
}

.summary-stat strong { display: block; font-size: 18px; }
.summary-stat span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }

.group-strip {
  display: flex;
  gap: 8px;
  margin: 14px -12px 12px;
  padding: 0 12px;
  overflow-x: auto;
  scrollbar-width: none;
}
.group-strip::-webkit-scrollbar { display: none; }

.chip {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 13px;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 12px;
}

.chip.active {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.exercise-list { display: grid; gap: 12px; }

.exercise-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.exercise-head {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 10px;
}

.exercise-photo {
  width: 82px;
  height: 82px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--surface-3);
}

.exercise-meta { min-width: 0; }
.exercise-meta .group { margin-bottom: 4px; color: var(--accent); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.exercise-meta .prescription { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.active-variant {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  align-items: center;
  max-width: 100%;
  margin: 5px 0 0;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--text);
  font-size: 10px;
}
.active-variant strong { color: var(--accent); font-size: 9px; letter-spacing: .09em; }
.active-variant span { color: var(--muted); }
.base-variant { margin: 4px 0 0; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .07em; }
.previous { margin: 5px 0 0; color: #c7d2e5; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.collapse-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-3);
  color: var(--text);
  font-size: 20px;
}

.exercise-card.collapsed .exercise-body { display: none; }
.exercise-card.collapsed .collapse-button { transform: rotate(-90deg); }

.exercise-body {
  padding: 0 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.movement-triptych {
  overflow: hidden;
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #080d15;
}

.movement-triptych.swap {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 8%, transparent);
}

.movement-triptych img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #080d15;
}

.movement-triptych figcaption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: var(--surface-2);
}

.movement-triptych figcaption span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.movement-triptych figcaption span:last-child { border-right: 0; }
.movement-triptych figcaption b { color: var(--accent); font-size: 12px; }

.set-head,
.set-row {
  display: grid;
  grid-template-columns: 30px minmax(58px, 1fr) minmax(58px, 1fr) 62px 44px;
  gap: 7px;
  align-items: center;
}

.set-head {
  padding: 9px 0 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.set-row { margin-bottom: 7px; }
.set-number { text-align: center; color: var(--muted); font-size: 13px; font-weight: 900; }
.set-row input, .set-row select { min-height: 44px; padding: 7px; text-align: center; }

.done-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0d1728;
  color: transparent;
  font-size: 22px;
  font-weight: 900;
}

.done-button.done {
  border-color: var(--green);
  background: var(--green);
  color: #062414;
}

.set-row.done-row input,
.set-row.done-row select { border-color: rgba(53, 198, 122, .45); background: rgba(53, 198, 122, .08); }

.exercise-actions {
  display: flex;
  gap: 7px;
  margin: 8px 0;
}

.progression-tip {
  display: grid;
  gap: 3px;
  margin-top: 10px;
  padding: 9px 10px;
  border-left: 3px solid var(--blue);
  border-radius: 8px;
  background: rgba(101, 168, 255, .08);
}
.progression-tip strong { color: var(--blue); font-size: 9px; letter-spacing: .08em; }
.progression-tip span { color: #d9e2f0; font-size: 12px; line-height: 1.4; }

.trend-wrap {
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 15, 27, .3);
}
.trend-wrap > summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #d9e2f0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.trend-wrap > summary span { margin-left: auto; }
.trend-wrap .positive { color: var(--green); }
.trend-wrap .negative { color: #ff9ba2; }
.trend-empty { margin: 0; padding: 0 10px 10px; color: var(--muted); font-size: 12px; line-height: 1.4; }
.trend-chart {
  height: 116px;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 6px;
  padding: 10px 9px 8px;
  border-top: 1px solid var(--line);
}
.trend-point { height: 96px; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.trend-point strong { color: var(--text); font-size: 9px; }
.trend-point small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.trend-bar { width: min(24px, 68%); margin-top: 3px; border-radius: 5px 5px 2px 2px; background: linear-gradient(var(--blue), #365f9c); }

.small-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
}

.notes-wrap { margin-top: 8px; }
.notes-wrap summary { color: var(--muted); font-size: 12px; font-weight: 800; cursor: pointer; }
.notes-wrap textarea { margin-top: 8px; font-size: 14px; }

.technique-wrap {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 15, 27, .34);
}

.technique-wrap summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

.technique-wrap summary::-webkit-details-marker { display: none; }
.technique-wrap summary::after { content: "⌄"; color: var(--accent); font-size: 18px; }
.technique-wrap[open] summary::after { transform: rotate(180deg); }
.technique-wrap summary small { margin-left: auto; color: var(--muted); font-size: 10px; font-weight: 700; }
.technique-wrap[open] summary small { display: none; }

.technique-content {
  display: grid;
  gap: 11px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.technique-block strong {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.technique-block p {
  margin: 0;
  color: #d9e2f0;
  font-size: 13px;
  line-height: 1.45;
}

.technique-block.warning strong { color: #ff9ba2; }
.swap-list { display: grid; gap: 7px; }
.swap-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  overflow: hidden;
}
.swap-item summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  color: #edf3fc;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.swap-item summary::-webkit-details-marker { display: none; }
.swap-item summary::after { content: "+"; margin-left: auto; color: var(--accent); font-size: 18px; }
.swap-item[open] summary::after { content: "−"; }
.swap-item p {
  margin: 0;
  padding: 0 10px 10px;
  color: #c7d2e5;
  font-size: 12px;
  line-height: 1.45;
}
.swap-use,
.swap-reset {
  min-height: 44px;
  border: 0;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
}
.swap-use {
  width: calc(100% - 20px);
  margin: 0 10px 10px;
  background: var(--surface-3);
  color: var(--text);
}
.swap-use.selected { background: var(--green); color: #062414; }
.swap-reset { width: 100%; margin-top: 8px; padding: 0 10px; background: rgba(255, 92, 104, .1); color: #ffafb5; border: 1px solid rgba(255, 92, 104, .25); }

.exercise-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}
.exercise-stats strong { color: var(--text); }
.pr-badge { color: var(--accent); font-weight: 900; }

.section-title {
  margin: 4px 2px 12px;
  font-size: 24px;
}

.weekly-panel {
  margin-bottom: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(26, 39, 61, .96), rgba(19, 30, 49, .96));
}
.weekly-head { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.weekly-head strong { font-size: 14px; }
.weekly-head span { color: var(--muted); font-size: 10px; }
.weekly-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 10px; }
.weekly-grid div { padding: 9px 5px; border-radius: 10px; background: rgba(8, 15, 27, .35); text-align: center; }
.weekly-grid strong { display: block; font-size: 16px; }
.weekly-grid span { color: var(--muted); font-size: 9px; text-transform: uppercase; }

.history-list { display: grid; gap: 10px; }
.history-card { padding: 14px; }
.history-card.active { border-color: var(--accent); }
.history-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.history-date { font-size: 17px; font-weight: 900; }
.history-time { color: var(--muted); font-size: 11px; }
.history-stats { display: flex; gap: 14px; margin: 11px 0; color: var(--muted); font-size: 12px; }
.history-stats strong { color: var(--text); }
.history-actions { display: grid; grid-template-columns: 1fr 1fr auto; gap: 7px; }

.data-card { padding: 15px; margin-bottom: 10px; }
.data-card h3 { margin-bottom: 7px; }
.data-card p { margin-bottom: 12px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.data-actions { display: grid; gap: 8px; }
.install-card-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.install-card-head > div { min-width: 0; }
.install-state {
  flex: 0 0 auto;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(243, 210, 27, .1);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.install-state.installed { background: rgba(53, 198, 122, .12); color: var(--green); }

.empty-state {
  padding: 36px 18px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.bottom-nav {
  position: fixed;
  z-index: 40;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: calc(64px + var(--safe-bottom));
  padding: 5px 8px calc(5px + var(--safe-bottom));
  background: rgba(12, 21, 36, .94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-item {
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.nav-item.active { color: var(--accent); background: rgba(243, 210, 27, .08); }
.nav-icon { display: block; margin-bottom: 2px; font-size: 20px; line-height: 1; }

.sheet-backdrop {
  position: fixed;
  z-index: 60;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(3px);
}

.bottom-sheet {
  position: fixed;
  z-index: 61;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 720px;
  margin: auto;
  padding: 8px 16px calc(18px + var(--safe-bottom));
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: var(--surface);
  transform: translateY(110%);
  transition: transform .24s ease;
}
.bottom-sheet.open { transform: translateY(0); }
.sheet-handle { width: 44px; height: 5px; margin: 0 auto 12px; border-radius: 9px; background: var(--line); }
.sheet-head { display: flex; justify-content: space-between; align-items: center; }
.icon-button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--surface-3); color: var(--text); font-size: 27px; }
.timer-display { margin: 20px 0; font-size: 66px; line-height: 1; font-weight: 900; text-align: center; font-variant-numeric: tabular-nums; }
.timer-presets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.timer-presets button { background: var(--surface-3); color: var(--text); }
.timer-presets button.selected { background: var(--accent); color: var(--accent-ink); }
.timer-actions { display: grid; grid-template-columns: .7fr 1.3fr; gap: 8px; margin-top: 12px; }

.install-sheet {
  max-height: min(90vh, 760px);
  overflow-y: auto;
}

.install-status {
  margin: 14px 0 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0d1728;
  color: #d9e2f0;
  font-size: 12px;
  line-height: 1.4;
}

.install-status.success { border-color: rgba(53, 198, 122, .45); color: #8ce8b7; }
.install-steps { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.install-steps li { display: grid; grid-template-columns: 32px 1fr; gap: 10px; align-items: start; }
.step-number {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 900;
}
.install-steps strong { font-size: 13px; }
.install-steps p { margin: 3px 0 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.install-benefits { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.install-benefits span {
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(53, 198, 122, .1);
  color: #8ce8b7;
  font-size: 11px;
  font-weight: 800;
}
.install-sheet > .button { width: 100%; margin-top: 8px; }

.install-hint {
  position: fixed;
  z-index: 55;
  left: 12px;
  right: 12px;
  bottom: calc(76px + var(--safe-bottom));
  max-width: 560px;
  margin: auto;
  padding: 13px 42px 13px 14px;
  border: 1px solid #725f0b;
  border-radius: 15px;
  background: #28230c;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}
.install-hint strong { display: block; color: var(--accent); font-size: 13px; }
.install-hint span { display: block; margin-top: 3px; color: #ddd7b6; font-size: 12px; line-height: 1.4; }
.install-hint > button:first-child { position: absolute; top: 6px; right: 6px; width: 34px; height: 34px; border: 0; background: transparent; color: #ddd7b6; font-size: 22px; }
.install-hint .install-hint-action {
  min-height: 40px;
  margin-top: 9px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 900;
}

.toast {
  position: fixed;
  z-index: 80;
  left: 50%;
  bottom: calc(82px + var(--safe-bottom));
  max-width: calc(100% - 30px);
  padding: 10px 14px;
  border-radius: 999px;
  background: #edf2f7;
  color: #101827;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: .2s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (min-width: 700px) {
  main { padding-left: 18px; padding-right: 18px; }
  .exercise-head { grid-template-columns: 100px 1fr auto; }
  .exercise-photo { width: 100px; height: 86px; }
  .bottom-nav { left: 50%; width: 720px; transform: translateX(-50%); border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
}

@media (max-width: 365px) {
  .set-head, .set-row { grid-template-columns: 26px minmax(52px, 1fr) minmax(52px, 1fr) 56px 42px; gap: 5px; }
  .exercise-head { grid-template-columns: 72px 1fr 38px; }
  .exercise-photo { width: 72px; height: 72px; }
  h3 { font-size: 15px; }
}

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

.default-tag { margin: 2px 0 0; font-size: 11px; font-weight: 700; color: var(--green); }
.default-hint { margin: 10px 0 0; font-size: 12px; color: var(--muted); }
.swap-set-default {
  margin-top: 10px; width: 100%; padding: 10px 12px; border-radius: 10px;
  border: 1px dashed var(--line); background: var(--surface-2); color: var(--text);
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.swap-set-default:active { background: var(--surface-3); }
