:root {
  color-scheme: light;
  --ink: #202329;
  --muted: #667085;
  --line: #dde3ea;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --gold: #b77b28;
  --copper: #c76634;
  --jade: #247b73;
  --rose: #a6465b;
  --blue: #315f8f;
  --shadow: 0 24px 60px rgba(31, 36, 44, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(36, 123, 115, 0.14), transparent 34%),
    linear-gradient(315deg, rgba(199, 102, 52, 0.13), transparent 36%),
    var(--paper);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1.08fr);
  gap: 22px;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 32px);
  margin: 16px auto;
}

.brand-panel,
.screen-panel {
  min-height: calc(100vh - 32px);
  border: 1px solid rgba(32, 35, 41, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(32, 35, 41, 0.88), rgba(49, 95, 143, 0.78)),
    radial-gradient(circle at 50% 55%, rgba(183, 123, 40, 0.35), transparent 36%);
  color: white;
}

.brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.brand-mark {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  width: 74px;
}

.brand-mark span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #f6d99c;
}

.brand-mark span:nth-child(2) {
  width: 46px;
}

.brand-kicker,
.section-head p {
  margin: 0 0 10px;
  color: var(--jade);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-panel .brand-kicker {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #f6d99c;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand-copy {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.coin,
.ritual-coin {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 8px solid #d89d4a;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffe7a8, #be762b 58%, #7d3f1f);
  color: #4d240e;
  font-weight: 800;
  box-shadow: inset 0 0 0 4px rgba(255, 244, 196, 0.35), 0 22px 34px rgba(0, 0, 0, 0.22);
}

.coin {
  position: absolute;
  opacity: 0.82;
}

.coin-one {
  right: 16%;
  top: 18%;
}

.coin-two {
  right: 32%;
  top: 42%;
  transform: scale(1.28) rotate(-16deg);
}

.coin-three {
  right: 10%;
  bottom: 16%;
  transform: scale(0.9) rotate(22deg);
}

.screen-panel {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 8px;
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f6f7;
}

.nav-chip {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.nav-chip.is-active {
  background: var(--panel);
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(32, 35, 41, 0.08);
}

.view {
  display: none;
  flex: 1;
  padding: 34px 12px 12px;
}

.view.is-active {
  display: block;
}

.section-head h2 {
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 4px rgba(36, 123, 115, 0.12);
}

.primary-action,
.secondary-action,
.quick-grid button {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  grid-column: 1 / -1;
  border: 0;
  background: linear-gradient(135deg, var(--jade), #1f5f83);
  color: white;
  box-shadow: 0 14px 28px rgba(36, 123, 115, 0.22);
}

.secondary-action {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.fine-print {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.profile-summary {
  display: grid;
  gap: 18px;
}

.summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.summary-item,
.reading-card,
.history-item,
.gua-result,
.reference-card,
.current-location,
.life-word-card,
.asset-card,
.visual-asset-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.summary-item {
  padding: 18px;
}

.summary-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 15px;
}

.summary-item p,
.history-item p,
.reading-section p,
.reference-card p,
.reference-card em,
.current-location p,
.asset-card p,
.visual-asset-card p,
.life-word-card p,
.life-word-card em,
.asset-note {
  margin: 0;
  color: #3f4650;
  line-height: 1.75;
}

.balance-line,
.balance-detail,
.balance-reminder,
.score-row {
  display: block;
  margin-top: 8px;
}

.score-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.score-row b {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(49, 95, 143, 0.08);
  color: var(--blue);
  font-size: 12px;
}

.balance-line {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(166, 70, 91, 0.1);
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
}

.balance-detail {
  color: #3f4650;
  font-size: 14px;
}

.balance-reminder {
  color: var(--jade);
  font-size: 14px;
  font-weight: 800;
}

.identity-assets {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 10px;
}

.life-word-card {
  display: grid;
  align-content: center;
  min-height: 148px;
  padding: 16px;
  background:
    linear-gradient(160deg, rgba(36, 123, 115, 0.12), rgba(183, 123, 40, 0.18)),
    #fffdf8;
}

.life-word-card span,
.asset-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(36, 123, 115, 0.1);
  color: var(--jade);
  font-size: 12px;
  font-weight: 900;
}

.life-word-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

.life-word-card p {
  color: var(--muted);
  font-weight: 900;
}

.life-word-card em {
  display: block;
  margin-top: 8px;
  color: var(--rose);
  font-style: normal;
  font-weight: 900;
}

.asset-card {
  min-height: 119px;
  padding: 18px;
}

.asset-card strong,
.visual-asset-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.visual-asset-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 148px;
  overflow: hidden;
  padding: 12px;
}

.guardian-card {
  grid-column: 1 / -1;
}

.visual-asset-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(36, 123, 115, 0.1);
  color: var(--jade);
  font-size: 12px;
  font-weight: 900;
}

.symbol-scene {
  position: relative;
  min-height: 104px;
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.36));
  box-shadow: inset 0 0 0 1px rgba(32, 35, 41, 0.08);
}

.symbol-scene i,
.symbol-scene b,
.symbol-scene em {
  position: absolute;
  display: block;
  content: "";
}

.symbol-scene i {
  left: 14px;
  right: 14px;
  bottom: 18px;
  height: 34px;
  border-radius: 60% 60% 10px 10px;
  background: var(--jade);
  opacity: 0.22;
}

.symbol-scene b {
  left: 50%;
  top: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.symbol-scene em {
  left: 26px;
  bottom: 34px;
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: rgba(32, 35, 41, 0.34);
  transform: rotate(-18deg);
}

.image-asset.木 .symbol-scene {
  background: linear-gradient(160deg, rgba(36, 123, 115, 0.2), rgba(255, 255, 255, 0.72));
}

.image-asset.木 .symbol-scene i {
  left: 82px;
  right: auto;
  bottom: 18px;
  width: 12px;
  height: 86px;
  border-radius: 999px;
  opacity: 0.8;
}

.image-asset.木 .symbol-scene b {
  top: 28px;
  width: 90px;
  height: 46px;
  border-radius: 70% 30% 70% 30%;
  background: #2f8f79;
  transform: translateX(-50%) rotate(-18deg);
}

.image-asset.木 .symbol-scene em {
  left: 40px;
  bottom: 42px;
  width: 96px;
  background: #7fb98f;
  transform: rotate(18deg);
}

.image-asset.火 .symbol-scene {
  background: linear-gradient(160deg, rgba(199, 102, 52, 0.22), rgba(255, 252, 242, 0.8));
}

.image-asset.火 .symbol-scene i {
  left: 50%;
  bottom: 24px;
  width: 72px;
  height: 96px;
  border-radius: 50% 50% 44% 44%;
  background: #c76634;
  opacity: 0.75;
  transform: translateX(-50%);
}

.image-asset.火 .symbol-scene b {
  top: 32px;
  width: 46px;
  height: 46px;
  background: #f1bd58;
}

.image-asset.火 .symbol-scene em {
  left: 76px;
  bottom: 32px;
  width: 30px;
  height: 74px;
  background: #fff3bd;
  transform: rotate(0);
}

.image-asset.土 .symbol-scene {
  background: linear-gradient(160deg, rgba(183, 123, 40, 0.2), rgba(255, 255, 255, 0.75));
}

.image-asset.土 .symbol-scene i {
  left: 10px;
  right: 10px;
  bottom: 18px;
  height: 38px;
  clip-path: polygon(0 100%, 22% 32%, 42% 72%, 64% 18%, 100% 100%);
  border-radius: 0;
  background: #a98249;
  opacity: 0.85;
}

.image-asset.土 .symbol-scene b {
  top: 24px;
  width: 42px;
  height: 42px;
  background: #d3aa5e;
}

.image-asset.土 .symbol-scene em {
  left: 20px;
  bottom: 18px;
  width: 70px;
  height: 7px;
  background: #7c6a4e;
  transform: rotate(0);
}

.image-asset.金 .symbol-scene {
  background: linear-gradient(160deg, rgba(49, 95, 143, 0.16), rgba(255, 255, 255, 0.78));
}

.image-asset.金 .symbol-scene i {
  left: 62px;
  bottom: 22px;
  width: 54px;
  height: 104px;
  clip-path: polygon(50% 0, 86% 74%, 50% 100%, 14% 74%);
  border-radius: 0;
  background: #8b98a9;
  opacity: 0.9;
}

.image-asset.金 .symbol-scene b {
  top: 32px;
  width: 18px;
  height: 18px;
  box-shadow: 34px 18px 0 #d7b86a, -34px 30px 0 #d7b86a;
  background: #d7b86a;
}

.image-asset.金 .symbol-scene em {
  left: 44px;
  bottom: 58px;
  width: 94px;
  background: #315f8f;
  transform: rotate(-42deg);
}

.image-asset.水 .symbol-scene {
  background: linear-gradient(160deg, rgba(49, 95, 143, 0.22), rgba(255, 255, 255, 0.74));
}

.image-asset.水 .symbol-scene i {
  left: 22px;
  right: 22px;
  bottom: 26px;
  height: 50px;
  border-radius: 50%;
  background: #315f8f;
  opacity: 0.72;
}

.image-asset.水 .symbol-scene b {
  top: 30px;
  width: 58px;
  height: 58px;
  background: #202329;
}

.image-asset.水 .symbol-scene em {
  left: 34px;
  bottom: 52px;
  width: 110px;
  height: 8px;
  background: #8fb4cf;
  transform: rotate(0);
  box-shadow: 0 18px 0 rgba(143, 180, 207, 0.72);
}

.guardian-card {
  grid-template-columns: 190px 1fr;
  gap: 20px;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(160deg, rgba(166, 70, 91, 0.1), rgba(49, 95, 143, 0.1)),
    rgba(255, 255, 255, 0.9);
}

.guardian-beast {
  display: block;
  width: 100%;
  aspect-ratio: 13 / 9;
  min-height: 0;
  border: 1px solid rgba(32, 35, 41, 0.08);
  border-radius: 8px;
  background: #fbfaf7;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.guardian-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.guardian-copy strong {
  margin-bottom: 0;
  font-size: 22px;
}

.guardian-copy p {
  max-width: 520px;
}

.beast-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.beast-tags b {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(36, 123, 115, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #3f4650;
  font-size: 13px;
}

.asset-note {
  grid-column: 1 / -1;
  padding: 8px 12px 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.reference-section {
  display: grid;
  gap: 12px;
}

.compact-head h2 {
  margin-bottom: 0;
  font-size: 22px;
}

.reference-grid {
  display: grid;
  gap: 12px;
}

.reference-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 16px;
}

.portrait {
  display: grid;
  place-items: center;
  width: 74px;
  height: 92px;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(183, 123, 40, 0.24), rgba(36, 123, 115, 0.16)),
    #fffaf0;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(183, 123, 40, 0.2);
}

.reference-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.reference-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.reference-card em {
  display: block;
  margin-top: 8px;
  color: var(--jade);
  font-style: normal;
  font-weight: 800;
}

.action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.question-box {
  margin-bottom: 14px;
}

.current-location {
  display: grid;
  grid-template-columns: 1fr 154px;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
  padding: 14px;
}

.current-location p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
}

.context-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.context-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.quick-grid button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--blue);
}

.ritual-start-action {
  display: block;
  width: min(340px, 100%);
  min-height: 58px;
  margin: 22px auto 0;
  font-size: 18px;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(183, 123, 40, 0.98), rgba(199, 102, 52, 0.96)),
    var(--copper);
  box-shadow: 0 18px 34px rgba(183, 123, 40, 0.28);
}

.ritual-start-action::before,
.ritual-start-action::after {
  content: "—";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.reading-start-action {
  margin-top: 10px;
}

.ritual-stage {
  display: grid;
  place-items: center;
  padding: 18px 0 8px;
}

.coin-stack {
  position: relative;
  width: 214px;
  height: 104px;
  margin-bottom: 16px;
}

.ritual-coin {
  position: absolute;
  width: 96px;
  height: 96px;
}

.ritual-coin:nth-child(1) {
  left: 0;
  transform: rotate(-14deg);
}

.ritual-coin:nth-child(2) {
  left: 58px;
  z-index: 2;
}

.ritual-coin:nth-child(3) {
  right: 0;
  transform: rotate(14deg);
}

.ritual-stage.is-holding .ritual-coin {
  animation: toss 0.7s linear infinite;
}

.ritual-stage.is-holding .ritual-coin:nth-child(2) {
  animation-delay: 0.12s;
}

.ritual-stage.is-holding .ritual-coin:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes toss {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.press-ring {
  position: relative;
  width: 168px;
  height: 168px;
}

.press-ring svg {
  position: absolute;
  inset: 0;
  transform: rotate(-90deg);
}

.press-ring circle {
  fill: none;
  stroke-width: 8;
}

.press-ring circle:first-child {
  stroke: #e7ecef;
}

#progress-ring {
  stroke: var(--copper);
  stroke-dasharray: 327;
  stroke-dashoffset: 327;
  transition: stroke-dashoffset 0.08s linear;
}

#hold-button {
  position: absolute;
  inset: 22px;
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 25%, #fff0ba, #c87931 64%, #7b3b1f);
  color: #4b210d;
  font-weight: 900;
  box-shadow: inset 0 0 0 6px rgba(255, 239, 170, 0.36), 0 14px 28px rgba(120, 65, 29, 0.25);
  touch-action: none;
}

.ritual-status {
  min-height: 28px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.gua-result {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 18px;
}

.gua-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.gua-row strong {
  color: var(--ink);
}

.reading-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.ai-status {
  padding: 10px 12px;
  border: 1px solid rgba(36, 123, 115, 0.14);
  border-radius: 8px;
  background: rgba(36, 123, 115, 0.08);
  color: var(--jade);
  font-size: 13px;
  font-weight: 800;
}

.reading-loading {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 20px;
  text-align: center;
}

.loading-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 25%, #fff0ba, #c87931 64%, #7b3b1f);
  color: #4b210d;
  font-size: 28px;
  font-weight: 900;
  box-shadow: inset 0 0 0 5px rgba(255, 239, 170, 0.36), 0 14px 28px rgba(120, 65, 29, 0.2);
}

.reading-loading strong {
  color: var(--ink);
  font-size: 20px;
}

.reading-loading p {
  margin: 0;
  color: var(--muted);
}

.reading-section h3 {
  margin: 0 0 8px;
  color: var(--jade);
  font-size: 17px;
}

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

.history-item {
  padding: 16px;
}

.history-item header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.history-item strong {
  color: var(--rose);
}

.history-meta {
  margin-top: 6px !important;
  color: var(--muted) !important;
  font-size: 13px;
}

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10;
  max-width: min(360px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(32, 35, 41, 0.92);
  color: white;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 860px) {
  .app-shell {
    grid-template-columns: 1fr;
    width: min(100% - 20px, 560px);
  }

  .brand-panel {
    min-height: 230px;
  }

  .screen-panel {
    min-height: auto;
  }

  h1 {
    font-size: 54px;
  }
}

@media (max-width: 560px) {
  .app-shell {
    margin: 10px auto;
  }

  .brand-panel,
  .screen-panel {
    min-height: auto;
    padding: 20px;
  }

  .screen-panel {
    padding: 12px;
  }

  .top-nav,
  .form-grid,
  .identity-assets,
  .summary-grid,
  .current-location,
  .context-grid,
  .action-row {
    grid-template-columns: 1fr;
  }

  .life-word-card {
    grid-row: auto;
    min-height: 190px;
  }

  .life-word-card strong {
    font-size: 70px;
  }

  .asset-note {
    grid-column: auto;
  }

  .visual-asset-card,
  .guardian-card {
    grid-template-columns: 1fr;
  }

  .symbol-scene {
    min-height: 128px;
  }

  .current-location p {
    grid-column: auto;
  }

  .top-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav-chip {
    min-height: 38px;
    font-size: 13px;
  }

  .view {
    padding: 26px 4px 4px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .quick-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reference-card {
    grid-template-columns: 62px 1fr;
  }

  .portrait {
    width: 62px;
    height: 80px;
    font-size: 28px;
  }

  .coin-one {
    top: 16%;
  }

  .coin-two {
    top: 48%;
  }
}
