:root {
  --bg: #f6f8f6;
  --bg-strong: #edf3ef;
  --surface: #ffffff;
  --surface-soft: #fafbf9;
  --surface-tint: #f1f6f3;
  --ink: #14211c;
  --ink-soft: #2d3c36;
  --muted: #66746f;
  --muted-soft: #87938f;
  --line: #dde6e1;
  --line-strong: #c8d5ce;
  --green: #075a3d;
  --green-dark: #043d2b;
  --green-soft: #eaf4ef;
  --gold: #c8a24d;
  --gold-soft: #fff7df;
  --danger: #a33b2e;
  --danger-soft: #fff8f6;
  --shadow: 0 20px 50px rgba(23, 35, 31, .08);
  --shadow-soft: 0 8px 24px rgba(23, 35, 31, .055);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 286px 1fr;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(246, 248, 246, 0) 260px),
    var(--bg);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  background: rgba(239, 245, 241, .92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 8px 24px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(7, 90, 61, .22);
  font-size: 20px;
  font-weight: 900;
}

.brand h1 {
  font-size: 18px;
  line-height: 1.25;
}

.brand p,
.topbar p,
.status-panel p,
.hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.brand p,
.topbar p {
  margin-top: 6px;
}

.nav {
  display: grid;
  gap: 8px;
}

.sidebar-bottom {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.sidebar {
  display: flex;
  flex-direction: column;
}

.aftersales-modal-image {
  width: min(320px, 100%);
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  justify-self: center;
}

.nav-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink-soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-button:hover {
  border-color: rgba(7, 90, 61, .14);
  background: rgba(255, 255, 255, .68);
}

.nav-button.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(7, 90, 61, .18);
}

main {
  min-width: 0;
  padding: 26px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 0 auto 20px;
  max-width: 1480px;
}

.topbar h2 {
  color: var(--green-dark);
  font-size: 28px;
  line-height: 1.25;
}

.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
}

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

.modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 12, .35);
  display: grid;
  place-items: center;
  z-index: 50;
}

.modal-card {
  width: min(420px, calc(100vw - 24px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.modal-card h3 {
  color: var(--green-dark);
}

.modal-card p {
  color: var(--muted);
  font-size: 12px;
}

.modal-message {
  border: 1px solid rgba(163, 59, 46, .22);
  border-radius: 8px;
  padding: 9px 10px;
  background: var(--danger-soft);
  color: var(--danger);
  font-size: 13px;
  line-height: 1.5;
}

.field-error {
  display: block;
  margin-top: 2px;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}

.modal-card label .field-error {
  align-self: start;
}

.credit-pill,
.task-pill {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 900;
}

.credit-pill {
  border: 1px solid var(--line);
  color: var(--green-dark);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-soft);
}

.task-pill {
  border: 1px solid rgba(200, 162, 77, .42);
  color: #6b4a05;
  background: var(--gold-soft);
}

.view {
  display: none;
}

.view.active,
#workspace.active {
  display: block;
}

.workflow {
  width: 100%;
  max-width: 1480px;
  display: grid;
  grid-template-columns: minmax(520px, 680px) minmax(390px, 1fr);
  gap: 20px;
  align-items: start;
  margin: 0 auto;
}

.form-stack,
.scheme-editor,
.result-content,
.profile-summary,
.asset-list,
.admin-list {
  display: grid;
  gap: 14px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-soft);
}

.form-panel,
.result-panel,
.status-panel {
  padding: 18px;
}

.result-panel {
  position: sticky;
  top: 22px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-title h3 {
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.35;
}

.section-title span,
#statusText {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.stepper .step {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 13px;
  font-weight: 900;
}

.stepper .step.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 4px;
  border-radius: 8px;
  background: var(--surface-tint);
  margin-bottom: 16px;
}

.mode-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mode-card {
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  background: var(--surface-soft);
  text-align: left;
  cursor: pointer;
}

.mode-card strong {
  color: var(--green-dark);
  font-size: 16px;
}

.mode-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.mode-card.active {
  border-color: rgba(7, 90, 61, .45);
  background: var(--green-soft);
  box-shadow: inset 0 0 0 1px rgba(7, 90, 61, .08);
}

.quick-ai-row {
  display: flex;
  justify-content: flex-end;
  margin: -4px 0 12px;
}

.quick-ai-output,
.quick-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
  white-space: pre-wrap;
}

.quick-ai-output {
  display: grid;
  gap: 8px;
}

.quick-suggestion-body {
  white-space: normal;
}

.quick-suggestion-compare {
  border-top: 1px dashed var(--line);
  padding-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.quick-suggestion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-summary {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  background: var(--green-soft);
}

.quick-summary strong {
  color: var(--green-dark);
}

.quick-summary span {
  color: var(--muted);
}

.segment {
  border: 0;
  border-radius: 6px;
  padding: 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

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

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--surface-soft);
  outline: none;
  font-size: 14px;
  line-height: 1.45;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

input,
select {
  min-height: 44px;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-soft);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(7, 90, 61, .78);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(7, 90, 61, .11);
}

.checkline {
  min-height: 44px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  background: var(--surface-soft);
}

.checkline input {
  width: auto;
  min-height: 0;
}

.hint {
  margin-top: 0;
}

details {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

summary {
  cursor: pointer;
  padding: 12px 13px;
  color: var(--green-dark);
  font-weight: 900;
}

.json-editor {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: #fbfcfb;
  font-family: Consolas, "Microsoft YaHei", monospace;
}

.inline-actions,
.actions,
.result-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.inline-actions {
  padding: 12px;
  border-top: 1px solid var(--line);
}

.actions {
  margin-top: 16px;
}

.primary-button,
.ghost-button,
.ghost-link {
  border-radius: 8px;
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.primary-button {
  border: 1px solid var(--green);
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(7, 90, 61, .16);
}

.primary-button:hover {
  background: var(--green-dark);
  box-shadow: 0 16px 28px rgba(7, 90, 61, .2);
}

.primary-button:disabled {
  cursor: wait;
  opacity: .72;
}

.ghost-button,
.ghost-link {
  border: 1px solid var(--line-strong);
  color: var(--green);
  background: #fff;
}

.ghost-button:hover,
.ghost-link:hover {
  border-color: rgba(7, 90, 61, .3);
  background: var(--green-soft);
}

.empty-state {
  min-height: 320px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  padding: 22px;
  background: var(--surface-soft);
}

.empty-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 22px;
}

.empty-state p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.progress-box {
  border: 1px solid rgba(7, 90, 61, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fbfdfb, var(--green-soft));
  padding: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.progress-head strong {
  color: var(--green-dark);
  font-size: 16px;
}

.progress-head span {
  color: var(--green);
  font-weight: 900;
}

.progress-eta {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.progress-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe9e4;
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width .35s ease;
}

.progress-steps {
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  list-style: none;
}

.progress-steps li {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.progress-steps li.active {
  color: var(--green);
  border-color: rgba(7, 90, 61, .25);
  background: #eef7f1;
}

.progress-steps li.done {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.poster-frame {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #eef2ef;
  padding: 10px;
}

.poster-frame img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 6px;
}

.pay-panel,
.redeem-card,
.admin-redeem {
  margin-top: 14px;
  border: 1px solid rgba(7, 90, 61, .16);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 12px;
  background: var(--green-soft);
}

.modify-poster-box {
  margin-top: 12px;
  border: 1px solid rgba(7, 90, 61, .16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, .82);
  display: grid;
  gap: 10px;
}

.pay-panel strong,
.redeem-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 15px;
}

.pay-panel span,
.redeem-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.price-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid rgba(7, 90, 61, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--text);
  text-decoration: none;
}

.price-card b {
  color: var(--green-dark);
  font-size: 14px;
}

.price-card span {
  font-size: 12px;
}

.redeem-inline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}

.admin-redeem {
  margin-top: 18px;
  background: var(--surface-soft);
}

pre {
  margin: 0;
  max-height: 280px;
  overflow: auto;
  padding: 0 13px 13px;
  white-space: pre-wrap;
  word-break: break-word;
  color: #25352f;
  font-size: 13px;
  line-height: 1.55;
}

.questions {
  border: 1px solid rgba(163, 59, 46, .28);
  border-radius: 8px;
  padding: 12px;
  color: var(--danger);
  background: var(--danger-soft);
  font-size: 14px;
  line-height: 1.7;
}

.asset-empty,
.history-placeholder {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 13px;
}

.asset-form {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 54px auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.asset-form select {
  margin: 0;
}

.asset-upload-button {
  width: 54px;
  height: 54px;
  border: 1px dashed rgba(7, 90, 61, .45);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-soft);
  cursor: pointer;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.asset-upload-button:hover {
  border-color: var(--green);
  background: #fff;
}

.asset-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.asset-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface-soft);
  font-size: 13px;
}

.asset-item img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  background: #eef2ef;
}

.asset-item div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.asset-item strong,
.asset-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-item span {
  color: var(--muted);
}

.asset-item button {
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--danger);
  background: #fff;
  cursor: pointer;
}

.scheme-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  padding: 14px;
}

.scheme-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--green);
}

.scheme-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.scheme-section h4 {
  margin: 0;
  color: var(--green-dark);
  font-size: 15px;
}

.mini-button {
  min-height: 32px;
  padding: 0 12px;
  font-size: 13px;
}

.scheme-card-summary {
  display: grid;
  gap: 8px;
}

.scheme-card-summary div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.scheme-card-summary strong {
  color: var(--green-dark);
}

.scheme-card-editor {
  margin-top: 12px;
  display: grid;
}

.scheme-section.collapsed .scheme-card-editor {
  display: none;
}

.scheme-section label {
  margin-bottom: 10px;
}

.ai-suggestion-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(221, 230, 225, .78);
}

.scheme-editor > .ai-suggestion-panel {
  margin-top: 2px;
  border: 1px solid rgba(7, 90, 61, .16);
  border-radius: 8px;
  padding: 14px;
  background: var(--green-soft);
}

.ai-suggestion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ai-suggestion-output {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink-soft);
  background: #fff;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.7;
}

.profile-summary div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface-soft);
  font-size: 13px;
}

.profile-summary .profile-media-row {
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
}

.profile-summary strong {
  color: var(--green-dark);
}

.profile-summary span {
  color: var(--muted);
  word-break: break-all;
}

.profile-upload-tools,
.profile-file-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.profile-file-field input {
  flex: 1;
}

.profile-thumb {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  object-fit: cover;
  background: #eef2ef;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  padding: 18px;
}

.history-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface-soft);
}

.history-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #eef2ef;
}

.history-card a {
  display: block;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.45;
  word-break: break-all;
}

.history-meta {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.4;
  border: 1px solid var(--line);
  background: #f3f6f4;
  color: var(--muted);
}

.status-generating {
  color: #8a5a00;
  background: #fff8e8;
  border-color: #f3ddb1;
}

.status-preview_ready,
.status-unlocked {
  color: #0a6b3f;
  background: #eaf7f1;
  border-color: #bee8d1;
}

.status-failed {
  color: #b42318;
  background: #fdeceb;
  border-color: #f8c9c5;
}

.history-card small,
.admin-row span {
  color: var(--muted);
}

.recharge-panel {
  display: grid;
  gap: 10px;
}

.recharge-toolbar {
  display: flex;
  justify-content: flex-end;
}

.recharge-frame {
  width: 100%;
  min-height: calc(100vh - 240px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.history-placeholder {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
}

.admin-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: grid;
  gap: 4px;
  background: var(--surface-soft);
}

.status-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  body {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
  }

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

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

  .result-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  main {
    padding: 14px;
  }

  .topbar,
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .field-grid,
  .field-grid.compact,
  .asset-form,
  .mode-cards,
  .redeem-inline,
  .stepper,
  .toggle-grid,
  .nav {
    grid-template-columns: 1fr;
  }

  .progress-steps {
    grid-template-columns: 1fr 1fr;
  }

  .scheme-card-summary div,
  .profile-summary div,
  .profile-summary .profile-media-row {
    grid-template-columns: 1fr;
  }

  .profile-file-field {
    align-items: stretch;
    flex-direction: column;
  }
}
