:root {
  --bg: #f7f4ea;
  --paper: #fffdf7;
  --paper-2: #f2eee3;
  --ink: #18221c;
  --muted: #687166;
  --line: rgba(29, 54, 42, 0.13);
  --green: #526f54;
  --green-dark: #233f36;
  --green-soft: #dce7d9;
  --gold: #d8b870;
  --cyan: #9ec8bd;
  --shadow: 0 18px 48px rgba(24, 34, 28, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 14% 10%, rgba(216, 184, 112, 0.2), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(82, 111, 84, 0.17), transparent 30%),
    var(--bg);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI",
    sans-serif;
}

button,
textarea,
input {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.app-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  margin: 0 auto;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf7 0%, #f5f1e6 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.screen {
  display: none;
  min-height: 100dvh;
  padding: calc(env(safe-area-inset-top) + 22px) 22px calc(env(safe-area-inset-bottom) + 116px);
  animation: enter 220ms ease-out;
}

.screen.active {
  display: block;
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
}

.brand-mark {
  width: 18px;
  height: 30px;
  border-radius: 18px 18px 18px 4px;
  background: linear-gradient(160deg, #2e4b3f, #7d9d79 72%, #d8b870);
  transform: rotate(-12deg);
}

.hero-visual {
  position: relative;
  height: 128px;
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 44% 45%, rgba(158, 200, 189, 0.3), transparent 22%),
    radial-gradient(circle at 58% 52%, rgba(216, 184, 112, 0.24), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(232, 238, 226, 0.42));
  border: 1px solid rgba(82, 111, 84, 0.12);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 34px 30px 30px;
  border: 1px dashed rgba(82, 111, 84, 0.25);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-visual::after {
  inset: 48px 20px 42px;
  transform: rotate(22deg);
}

.memory-card {
  position: absolute;
  z-index: 1;
  width: 92px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.memory-card span,
.dim-icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.memory-card strong {
  font-size: 12px;
}

.card-a {
  left: 18px;
  bottom: 18px;
}

.card-b {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.card-c {
  right: 18px;
  bottom: 18px;
}

.node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 24px rgba(216, 184, 112, 0.85);
}

.node-a {
  left: 48%;
  top: 38%;
}

.node-b {
  left: 38%;
  bottom: 34%;
  background: var(--green);
}

.node-c {
  right: 27%;
  bottom: 28%;
  background: var(--cyan);
}

.copy-block {
  margin-top: 18px;
}

h1 {
  max-width: 11em;
  font-size: clamp(28px, 8.5vw, 38px);
  line-height: 1.1;
}

.copy-block p,
.section-head p,
.section-desc,
.hint-text,
.mode-note,
.profile-head small,
.record-card p,
.save-card p {
  color: var(--muted);
  line-height: 1.65;
}

.copy-block p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.home-stats div {
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.home-stats strong {
  display: block;
  font-size: 20px;
}

.home-stats span {
  color: var(--muted);
  font-size: 12px;
}

.action-stack,
.profile-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.primary,
.secondary,
.ghost,
.ghost-dark {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 700;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #6f8d67, #263f36);
  box-shadow: 0 14px 28px rgba(38, 63, 54, 0.22);
}

.secondary {
  color: #fff;
  background: var(--green);
}

.ghost,
.ghost-dark {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

.ghost-dark {
  color: #eaf1e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.fixed-bottom {
  position: fixed;
  left: max(24px, calc((100vw - 430px) / 2 + 24px));
  right: max(24px, calc((100vw - 430px) / 2 + 24px));
  bottom: calc(env(safe-area-inset-bottom) + 82px);
  width: auto;
  max-width: 382px;
  margin: 0 auto;
}

.back {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.62);
  font-size: 34px;
  line-height: 30px;
}

.section-head {
  margin-top: 24px;
}

.section-head p {
  margin-bottom: 8px;
  font-size: 14px;
}

.section-head h2 {
  font-size: 31px;
  line-height: 1.2;
}

.section-desc {
  display: block;
  margin-top: 10px;
  font-size: 14px;
}

.choice-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 96px;
}

.choice {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.choice.selected {
  border-color: rgba(82, 111, 84, 0.55);
  background: rgba(220, 231, 217, 0.55);
}

.choice-title {
  font-size: 20px;
  font-weight: 800;
}

.choice-desc {
  color: var(--muted);
  line-height: 1.5;
}

.choice-tag {
  position: absolute;
  right: 16px;
  top: 16px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff8df;
  font-size: 12px;
  font-weight: 700;
}

.step-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.step-line i {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) 34%, rgba(82, 111, 84, 0.15) 34%);
}

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.mode-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.58);
}

.mode-tab.active {
  color: #fff;
  background: var(--green);
}

.capture-panel {
  display: none;
}

.capture-panel.active {
  display: block;
}

.input-card,
.upload-card,
.preview-card,
.dialog-card,
.question-card,
.save-card,
.record-card,
.empty-card {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(24, 34, 28, 0.08);
}

.input-card {
  margin-top: 20px;
}

.input-card.compact textarea {
  min-height: 112px;
}

textarea,
.text-input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  line-height: 1.6;
}

textarea {
  min-height: 150px;
  resize: none;
}

.text-input {
  min-height: 46px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

textarea::placeholder,
.text-input::placeholder {
  color: rgba(106, 113, 105, 0.72);
}

.input-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.tool-button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--green-dark);
  background: rgba(247, 244, 234, 0.75);
  font-weight: 700;
}

.tool-icon,
.upload-icon {
  display: inline-block;
  width: 16px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.upload-card {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 152px;
  color: var(--green-dark);
  text-align: center;
  cursor: pointer;
}

.upload-card input {
  display: none;
}

.upload-card small {
  color: var(--muted);
}

.upload-icon {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 12px;
}

.preview-card img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.hidden {
  display: none;
}

.chip-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip-row {
  margin-top: 16px;
}

.chip,
.tag-row span {
  border: 1px solid rgba(82, 111, 84, 0.16);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.65);
}

.chip {
  min-height: 38px;
  padding: 0 13px;
}

.tag-row span {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
}

.hint-text {
  margin-top: 16px;
  padding-bottom: 96px;
  font-size: 14px;
}

.mode-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(216, 184, 112, 0.16);
  font-size: 13px;
}

.top-title {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-weight: 700;
}

[data-screen="feedback"],
[data-screen="profile"],
[data-screen="growth"] {
  background:
    radial-gradient(circle at 88% 10%, rgba(111, 141, 103, 0.3), transparent 28%),
    linear-gradient(180deg, #203a32, #10221d);
  color: #f8f6ee;
}

[data-screen="feedback"] .back,
[data-screen="profile"] .back,
[data-screen="growth"] .back {
  color: #f8f6ee;
  background: rgba(255, 255, 255, 0.09);
}

[data-screen="growth"] .section-desc,
[data-screen="growth"] .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.dialog-card,
.question-card {
  background: rgba(255, 253, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.save-path-card {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(158, 200, 189, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.save-path-card strong {
  color: #f8f6ee;
}

.save-path-card span,
.save-path-card small {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.save-path-card small {
  font-size: 12px;
}

.dialog-card.soft {
  margin-top: 34px;
  background: linear-gradient(145deg, #fffdf7, #eff5ec);
}

.dialog-card p,
.question-card p,
.save-card p {
  margin-bottom: 10px;
}

.dialog-card h2 {
  font-size: 28px;
}

.dialog-card strong {
  display: block;
  line-height: 1.65;
}

.question-card h3 {
  font-size: 22px;
  line-height: 1.35;
}

.question-card textarea {
  min-height: 76px;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(242, 238, 227, 0.82);
}

.dual-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.profile-head {
  margin-top: 18px;
  text-align: center;
}

.profile-head p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 22px auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #203a32 53%, transparent 55%),
    conic-gradient(#9ec8bd 11deg, rgba(255, 255, 255, 0.18) 0deg);
  box-shadow: 0 0 46px rgba(158, 200, 189, 0.16);
}

.progress-ring span {
  font-size: 38px;
  font-weight: 900;
}

.dimension-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.dimension-grid article {
  min-height: 108px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
}

.dimension-grid article.active {
  background: rgba(220, 231, 217, 0.2);
  border-color: rgba(158, 200, 189, 0.42);
}

.dimension-grid strong {
  display: block;
  margin-top: 10px;
}

.dimension-grid p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.chapter-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  color: var(--ink);
  background: linear-gradient(145deg, #fffdf7, #f3ecd9);
}

.latest-card {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
}

.latest-card p,
.latest-card span {
  color: rgba(255, 255, 255, 0.68);
}

.latest-card strong {
  line-height: 1.55;
}

.latest-card .ghost {
  min-height: 44px;
  margin-top: 4px;
  color: #f8f6ee;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

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

.growth-summary div {
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.growth-summary strong {
  display: block;
  font-size: 24px;
}

.growth-summary span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.psychology-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.psych-card {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.psych-card span {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  color: #203a32;
  background: var(--cyan);
  font-size: 11px;
  font-weight: 800;
}

.psych-card strong {
  color: #fffdf7;
  font-size: 15px;
}

.psych-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.mission-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(216, 184, 112, 0.24);
  border-radius: 22px;
  background: rgba(216, 184, 112, 0.1);
}

.mission-head {
  display: grid;
  gap: 5px;
}

.mission-head p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.mission-head strong {
  color: #fffdf7;
  line-height: 1.45;
}

.mission-list {
  display: grid;
  gap: 10px;
}

.mission-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.mission-card.done {
  border-color: rgba(158, 200, 189, 0.38);
  background: rgba(158, 200, 189, 0.13);
}

.mission-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 800;
}

.mission-card strong {
  display: block;
  margin-top: 4px;
  color: #fffdf7;
  font-size: 15px;
}

.mission-card p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.5;
}

.mission-card button {
  min-width: 58px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: #203a32;
  background: var(--gold);
  font-weight: 900;
}

.mission-card.done button {
  background: var(--cyan);
}

.trait-tree {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.trait-node {
  position: relative;
}

.trait-node::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -12px;
  width: 1px;
  height: 12px;
  background: rgba(158, 200, 189, 0.24);
}

.trait-node:first-child::before {
  display: none;
}

.trait-main {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 4px 12px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: #f8f6ee;
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.trait-main:disabled {
  cursor: default;
}

.trait-dot {
  grid-row: 1 / 5;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.trait-node.unlocked .trait-dot {
  background: var(--gold);
  box-shadow: 0 0 18px rgba(216, 184, 112, 0.62);
}

.trait-node.active .trait-dot {
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(158, 200, 189, 0.74);
}

.trait-main strong {
  font-size: 18px;
}

.trait-main small {
  grid-column: 2 / 4;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
}

.trait-main i {
  grid-column: 2 / 4;
  height: 5px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.trait-main i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.trait-main em {
  justify-self: end;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-style: normal;
}

.trait-node.unlocked .trait-main {
  border-color: rgba(216, 184, 112, 0.48);
  background: rgba(216, 184, 112, 0.12);
}

.trait-node.active .trait-main {
  border-color: rgba(158, 200, 189, 0.54);
  background: rgba(158, 200, 189, 0.16);
}

.boost-card,
.insight-card {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
}

.boost-card {
  border: 1px solid rgba(216, 184, 112, 0.28);
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.14), rgba(216, 184, 112, 0.12));
}

.boost-card p,
.boost-card span {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.boost-card .primary {
  min-height: 48px;
  margin-top: 4px;
}

.insight-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-bottom: 96px;
}

.insight-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.insight-card span,
.insight-card p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
}

.insight-card strong {
  font-size: 18px;
}

.chapter-card p,
.chapter-card span {
  color: var(--muted);
}

.chapter-card strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
}

.record-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 96px;
}

.record-card {
  display: grid;
  gap: 12px;
}

.record-card img {
  width: 100%;
  max-height: 210px;
  object-fit: cover;
  border-radius: 18px;
}

.record-card span {
  color: var(--muted);
  font-size: 13px;
}

.record-card strong {
  display: block;
  margin: 6px 0 8px;
  line-height: 1.5;
}

.record-card .tag-row {
  margin-top: 10px;
}

.answer-line {
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(220, 231, 217, 0.36);
}

.empty-card {
  color: var(--muted);
  text-align: center;
}

[data-screen="growth"] .empty-card {
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.inbox-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.inbox-preview span {
  padding: 14px;
  border-radius: 16px;
  background: rgba(220, 231, 217, 0.6);
  color: var(--green-dark);
  text-align: center;
  font-weight: 700;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  max-width: 430px;
  padding: 8px 10px calc(env(safe-area-inset-bottom) + 8px);
  transform: translateX(-50%);
  background: rgba(255, 253, 247, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.bottom-nav button {
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  color: var(--green-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.bottom-nav button.active {
  color: #fff;
  background: var(--green);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom) + 82px);
  z-index: 10;
  max-width: min(360px, calc(100vw - 40px));
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 34, 28, 0.86);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition: 180ms ease;
  pointer-events: none;
}

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

@media (min-width: 700px) {
  body {
    padding: 24px 0;
  }

  .app-shell {
    min-height: calc(100dvh - 48px);
    border-radius: 38px;
  }

  .bottom-nav {
    bottom: 24px;
    border-radius: 0 0 38px 38px;
  }
}
