:root {
  --bg-top: #e9f2ff;
  --bg-bottom: #f8fbff;
  --card: #ffffff;
  --text: #16233f;
  --muted: #617391;
  --line: #d9e4f4;
  --brand: #2651d8;
  --brand-strong: #173fba;
  --brand-soft: rgba(255, 255, 255, 0.16);
  --brand-soft-border: rgba(255, 255, 255, 0.18);
  --panel-soft: #f4f7ff;
  --panel-strong: #edf3ff;
  --ok-bg: #eaf9ee;
  --ok-text: #166b39;
  --wait-bg: #fff3de;
  --wait-text: #9b5a0a;
  --pending-bg: #eef2f7;
  --pending-text: #5f6f86;
  --danger: #d92d20;
  --shadow-hero: 0 28px 50px rgba(35, 74, 174, 0.28);
  --shadow-card: 0 12px 32px rgba(17, 39, 86, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(31, 103, 255, 0.18), transparent 24%),
    radial-gradient(circle at 100% 18%, rgba(53, 125, 255, 0.14), transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

.container {
  width: min(1160px, calc(100% - 24px));
  margin: 28px auto 48px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.page-enter {
  animation: pageReveal 0.42s ease;
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardRise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h2 {
  font-size: clamp(22px, 3vw, 32px);
}

h3 {
  font-size: 20px;
}

.muted {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.verify-shell {
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  padding-block: 42px;
}

.verify-stage {
  width: min(660px, 100%);
  margin: 0 auto;
}

.verify-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 40px 36px 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(88, 134, 255, 0.12), transparent 23%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, #fbfcff 100%);
  border: 1px solid rgba(214, 224, 244, 0.96);
  box-shadow:
    0 26px 58px rgba(18, 38, 80, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.verify-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, #2553d9 0%, #7aa8ff 100%);
}

.verify-card::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90, 136, 255, 0.12) 0%, rgba(90, 136, 255, 0) 68%);
  pointer-events: none;
}

.verify-card-header,
.verify-card-note,
.verify-form-panel {
  position: relative;
  z-index: 1;
}

.verify-card-header {
  display: grid;
  gap: 14px;
}

.verify-chip {
  width: fit-content;
  padding: 9px 15px;
  color: #1f49c5;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf1ff 100%);
  border: 1px solid #d8e3fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.verify-card-title {
  margin: 0;
  color: #13274a;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.verify-card-summary {
  max-width: 440px;
  margin: 0;
  color: #6a7c9d;
  font-size: 15px;
  line-height: 1.74;
}

.verify-card-note {
  display: flex;
  align-items: center;
  min-height: 52px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 16px;
  color: #7386a8;
  background: linear-gradient(180deg, #f7faff 0%, #f1f6ff 100%);
  border: 1px solid #dce6fb;
  font-size: 13px;
}

.verify-form-panel {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(216, 227, 251, 0.9);
}

.verify-field {
  display: grid;
  gap: 10px;
}

.verify-field + .verify-field {
  margin-top: 16px;
}

.verify-card label {
  margin: 0;
  color: #1b3158;
  font-size: 14px;
  font-weight: 800;
}

.verify-card input {
  min-height: 60px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid #d6e1fb;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -8px 20px rgba(90, 136, 255, 0.03);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.verify-card input:hover {
  border-color: #bcd0fb;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

.verify-card input:focus {
  outline: none;
  border-color: #6f9cff;
  background: #ffffff;
  box-shadow:
    0 0 0 5px rgba(44, 104, 255, 0.14),
    0 14px 28px rgba(37, 81, 216, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.verify-card input::placeholder {
  color: #98a5bc;
}

.verify-card #order_no {
  font-family: "JetBrains Mono", "Cascadia Mono", Consolas, "PingFang SC", "Microsoft YaHei", monospace;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.verify-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  min-height: 60px;
  border-radius: 22px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow:
    0 18px 34px rgba(37, 81, 216, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.verify-submit-text {
  line-height: 1;
}

.verify-submit-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 16px;
  transform: translateX(0);
  transition: transform 0.2s ease, background 0.2s ease;
}

.verify-submit:hover .verify-submit-arrow {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.22);
}

.stack-form {
  margin-top: 14px;
}

label {
  display: block;
  margin: 13px 0 8px;
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea,
button {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #8ab0ff;
  box-shadow: 0 0 0 4px rgba(28, 120, 255, 0.12);
}

button {
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.22s ease;
}

button:hover {
  filter: brightness(1.02);
  transform: translateY(-1px);
}

button:active {
  transform: translateY(1px) scale(0.99);
}

button:disabled {
  cursor: not-allowed;
  filter: saturate(0.8);
  transform: none;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f57e6 0%, #4f8dff 100%);
  box-shadow: 0 12px 22px rgba(37, 81, 216, 0.24);
}

.btn-secondary {
  color: #173f94;
  background: #f0f5ff;
  border: 1px solid #c9dafd;
}

.error {
  color: var(--danger);
  font-size: 13px;
  min-height: 22px;
  margin-top: 10px;
}

@media (max-width: 700px) {
  .verify-shell {
    min-height: auto;
    padding-block: 18px 26px;
  }

  .verify-stage {
    width: 100%;
  }

  .verify-card {
    padding: 24px 18px 22px;
    border-radius: 28px;
  }

  .verify-card-title {
    font-size: clamp(28px, 9vw, 38px);
  }

  .verify-card-summary {
    max-width: none;
    font-size: 14px;
    line-height: 1.68;
  }

  .verify-card-note {
    min-height: 48px;
    margin-top: 16px;
    padding: 0 14px;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-all;
  }

  .verify-form-panel {
    margin-top: 20px;
    padding-top: 20px;
  }

  .verify-card input {
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
  }

  .verify-card #order_no {
    font-size: 13px;
  }

  .verify-submit {
    min-height: 54px;
    border-radius: 20px;
    font-size: 16px;
  }
}
.hero-banner {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 28px 34px 30px;
  background: linear-gradient(135deg, #284fcf 0%, #3164e6 45%, #4a84ff 100%);
  box-shadow: var(--shadow-hero);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.hero-copy {
  max-width: 1000px;
}

.hero-chip {
  color: #ffffff;
  background: var(--brand-soft);
  border: 1px solid var(--brand-soft-border);
  backdrop-filter: blur(10px);
}

.hero-title {
  margin-top: 14px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.26;
  max-width: 100%;
}

.hero-summary {
  margin-top: 14px;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 1.74;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.btn-hero-main,
.btn-hero-ghost,
.btn-utility,
.btn-action-primary,
.btn-action-secondary,
.btn-claim {
  min-height: 50px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 800;
}

.btn-hero-main {
  width: auto;
  min-width: 136px;
  padding: 0 22px;
  color: var(--brand-strong);
  background: linear-gradient(180deg, #ffffff 0%, #f2f7ff 100%);
  box-shadow: 0 18px 30px rgba(15, 38, 110, 0.18);
}

.btn-hero-ghost {
  width: auto;
  min-width: 150px;
  padding: 0 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-mini-bar {
  position: relative;
  z-index: 1;
  height: 10px;
  margin-top: -2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.hero-mini-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff 0%, #dbe8ff 100%);
  transition: width 0.3s ease;
}

.hero-actions-floating {
  margin-top: auto;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.btn-utility {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.btn-utility-light {
  color: #1a469f;
  background: linear-gradient(180deg, #f5f8ff 0%, #edf3ff 100%);
  border: 1px solid #c9dafd;
  backdrop-filter: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.hero-orb-lg {
  right: -96px;
  bottom: -138px;
  width: 360px;
  height: 360px;
}

.hero-orb-sm {
  right: 220px;
  top: -70px;
  width: 180px;
  height: 180px;
  opacity: 0.18;
}

.status-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 16px 18px;
}

.status-strip-main {
  display: grid;
  gap: 10px;
}

.status-strip-top,
.status-strip-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-strip-label {
  color: #5d76a6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-strip-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #1b4bc9;
  background: #edf3ff;
  border: 1px solid #d1defd;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-strip-progress {
  color: #58719b;
  font-size: 13px;
}

.status-strip-progress strong {
  color: #173f97;
  font-size: 20px;
}

.status-strip-bar .hero-mini-bar {
  height: 10px;
  margin-top: 0;
  background: #dbe6fb;
}

.status-strip-bar .hero-mini-bar span {
  background: linear-gradient(90deg, #3e7bff 0%, #2450d6 100%);
}

.status-strip-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(118px, auto));
  gap: 10px;
}

.summary-panel {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  padding: 20px;
}

.summary-head,
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #5d76a6;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-tip,
.section-tip {
  max-width: 390px;
  color: #62779a;
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
}

.summary-head-compact {
  display: block;
  margin-bottom: 10px;
}

.summary-kicker {
  margin-bottom: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
}

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

.meta-card {
  display: grid;
  align-content: center;
  gap: 6px;
  min-height: 88px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, var(--panel-soft) 100%);
  border: 1px solid #dbe6fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.meta-label {
  display: block;
  color: #61738f;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 0;
}

.meta-card strong {
  display: block;
  color: #153f97;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.01em;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.meta-card-order strong,
.meta-card-mobile strong {
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 600;
}

.meta-card-course strong {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
}

.meta-card-status strong {
  font-size: clamp(16px, 1.08vw, 19px);
}

.items-section {
  margin-top: 26px;
}

.items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

.item-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(76px, 1fr) auto auto;
  align-content: start;
  gap: 0;
  height: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(19, 38, 83, 0.07);
  animation: cardRise 0.45s both;
}

.item-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 28px 0 0 28px;
  background: linear-gradient(180deg, #2450d6 0%, #6fa0ff 100%);
  opacity: 0.9;
}

.item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(18, 42, 96, 0.11);
}

.item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.item-title-wrap {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  flex: 1;
  min-width: 0;
}

.item-index {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 18px;
  font-weight: 900;
  color: #1b4bc9;
  background: linear-gradient(180deg, #edf4ff 0%, #dfeaff 100%);
}

.item-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: #6e81a4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.item-title strong {
  display: block;
  font-size: 21px;
  line-height: 1.32;
  word-break: break-word;
}

.item-desc {
  min-height: 76px;
  font-size: 15px;
  line-height: 1.72;
}

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

.actions.actions-single {
  grid-template-columns: 1fr;
  margin-top: 10px;
}

.item-footnote {
  min-height: 46px;
  margin: 12px 0 0;
  color: #7284a1;
  font-size: 13px;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  flex: 0 0 auto;
}

.status.pending {
  background: var(--pending-bg);
  color: var(--pending-text);
}

.status.waiting_confirm {
  background: var(--wait-bg);
  color: var(--wait-text);
}

.status.completed {
  background: var(--ok-bg);
  color: var(--ok-text);
}

.btn-action-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, #4f87ff 100%);
  box-shadow: 0 14px 24px rgba(35, 81, 216, 0.22);
}

.btn-action-secondary,
.btn-claim {
  color: #173f94;
  background: #eff4ff;
  border: 1px solid #c8dafd;
}

.btn-claim {
  font-weight: 700;
}

.done-banner {
  margin-top: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d4ccf 0%, #4a84ff 100%);
  box-shadow: 0 20px 34px rgba(34, 77, 194, 0.22);
}

.done-banner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.7;
}

.done-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 40, 0.46);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 40;
}

.modal-card {
  width: min(680px, 100%);
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #dae4f5;
  padding: 20px;
  box-shadow: 0 24px 48px rgba(14, 29, 54, 0.24);
  animation: pageReveal 0.2s ease;
}

.copy-box {
  background: #f8faff;
  border: 1px dashed #bfd3fb;
  border-radius: 16px;
  padding: 14px;
  margin: 12px 0;
  font-size: 15px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.qr {
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid #dae4f5;
  margin: 12px 0;
}

.modal-actions {
  margin-top: 16px;
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(20, 31, 53, 0.94);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 22px rgba(8, 20, 40, 0.3);
  z-index: 80;
}

@media (max-width: 1080px) {
  .verify-stage {
    grid-template-columns: 1fr;
  }

  .verify-hero {
    padding: 28px 26px 24px;
  }

  .verify-card {
    padding: 26px 22px 24px;
  }

  .verify-hero-title {
    max-width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 100%;
  }

  .summary-head,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .summary-tip,
  .section-tip {
    max-width: none;
  }

  .status-strip {
    grid-template-columns: 1fr;
  }

  .status-strip-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .container {
    width: calc(100% - 16px);
    margin-top: 12px;
  }

  .verify-shell {
    min-height: auto;
  }

  .verify-stage {
    gap: 14px;
  }

  .verify-hero,
  .verify-card {
    border-radius: 26px;
  }

  .verify-hero {
    padding: 22px 18px;
  }

  .verify-hero-title {
    font-size: clamp(28px, 8vw, 34px);
  }

  .verify-hero-summary {
    font-size: 14px;
    line-height: 1.72;
  }

  .verify-hero-example {
    margin-top: 22px;
    padding: 16px;
  }

  .verify-hero-example code {
    font-size: 12px;
  }

  .verify-hero-points {
    gap: 8px;
  }

  .verify-card {
    padding: 22px 18px 20px;
  }

  .verify-card-title {
    font-size: clamp(24px, 8vw, 30px);
  }

  .verify-card #order_no {
    font-size: 13px;
  }

  .verify-card #verify-btn {
    min-height: 52px;
  }

  .card,
  .summary-panel,
  .item-card,
  .modal-card,
  .done-banner {
    border-radius: 22px;
  }

  .hero-banner {
    padding: 20px 18px 22px;
    border-radius: 28px;
  }

  .hero-title {
    margin-top: 12px;
    font-size: clamp(26px, 8vw, 32px);
  }

  .hero-summary {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-cta,
  .hero-actions-floating,
  .actions,
  .modal-actions {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-cta {
    gap: 8px;
  }

  .btn-hero-main,
  .btn-hero-ghost,
  .btn-utility,
  .btn-action-primary,
  .btn-action-secondary,
  .btn-claim {
    min-height: 48px;
  }

  .meta-grid {
    grid-template-columns: 1fr;
  }

  .meta-card {
    min-height: 0;
  }

  .meta-card strong {
    font-size: 15px;
  }

  .status-strip-progress strong {
    font-size: 18px;
  }

  .item-title strong {
    font-size: 18px;
  }

  .item-title-wrap {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .item-index {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 14px;
  }

  .item-desc,
  .item-footnote {
    min-height: 0;
  }

  .status-strip {
    padding: 16px;
  }

  .status-strip-actions {
    grid-template-columns: 1fr;
  }

  .toast {
    left: 12px;
    right: 12px;
    bottom: 12px;
    text-align: center;
  }
}
