:root {
  color-scheme: light;
  --bg: #07090c;
  --panel: #11161d;
  --panel-2: #1c242d;
  --paper: #f6eddc;
  --paper-2: #e8d7bd;
  --ink: #17130f;
  --muted: #746857;
  --bone: #fff6e7;
  --line: rgba(31, 26, 19, 0.15);
  --line-dark: rgba(255, 246, 231, 0.16);
  --brass: #b8894d;
  --gold: #e4bd69;
  --jade: #147268;
  --indigo: #2f5f8f;
  --cinnabar: #b74031;
  --shadow: 0 30px 96px rgba(0, 0, 0, 0.48);
  --tight-shadow: 0 18px 44px rgba(20, 13, 6, 0.2);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(246, 237, 220, 0.04) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(180deg, #06080b 0%, #111821 45%, #130e0b 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(228, 189, 105, 0.46);
  outline-offset: 2px;
}

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

p {
  line-height: 1.68;
}

.fulfillment-shell {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  padding-bottom: 42px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 237, 220, 0.98), rgba(246, 237, 220, 0.95) 52%, rgba(232, 215, 189, 0.98)),
    linear-gradient(90deg, rgba(47, 95, 143, 0.07) 1px, transparent 1px) 0 0 / 30px 30px;
  box-shadow: var(--shadow);
}

.fulfillment-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 9px;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold), var(--jade), var(--indigo));
  z-index: 50;
}

.workbench-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 16px 12px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(7, 9, 12, 0.94);
  color: var(--bone);
  backdrop-filter: blur(18px);
}

.workbench-topbar p,
.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.workbench-topbar h1 {
  margin: 2px 0 0;
  font-size: 18px;
  line-height: 1.2;
}

.icon-button,
.text-button {
  display: grid;
  place-items: center;
  min-height: 40px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(246, 237, 220, 0.08);
  color: inherit;
  font-weight: 950;
  text-decoration: none;
}

.icon-button {
  width: 40px;
}

.text-button {
  padding: 0 12px;
}

.handoff-hero {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 520px;
  padding: 28px 18px 22px;
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(11, 14, 19, 0.96), rgba(17, 22, 29, 0.98) 54%, rgba(7, 9, 12, 1)),
    linear-gradient(90deg, rgba(255, 246, 231, 0.07) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(255, 246, 231, 0.04) 1px, transparent 1px) 0 0 / 34px 34px;
}

.handoff-hero::before {
  content: "FULFILLMENT DESK";
  position: absolute;
  top: 116px;
  left: 18px;
  right: 18px;
  color: rgba(255, 246, 231, 0.052);
  font-size: 45px;
  font-weight: 950;
  line-height: 0.95;
}

.handoff-hero > * {
  position: relative;
  z-index: 1;
}

.handoff-copy {
  align-self: end;
}

.pill {
  width: fit-content;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 246, 231, 0.2);
  border-radius: 999px;
  background: rgba(255, 246, 231, 0.08);
  color: var(--bone);
  font-size: 12px;
  font-weight: 950;
}

.handoff-copy h2 {
  max-width: 8.7em;
  margin: 0 0 14px;
  color: var(--bone);
  font-size: 42px;
  line-height: 1.12;
  text-wrap: balance;
}

.lead {
  margin-bottom: 0;
  color: rgba(255, 246, 231, 0.78);
  font-size: 16px;
}

.order-ledger {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(228, 189, 105, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 189, 105, 0.14), rgba(255, 246, 231, 0.04)),
    rgba(7, 9, 12, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 231, 0.05);
}

.ledger-stamp {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(228, 189, 105, 0.68);
  border-radius: 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
}

.order-ledger dl {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
}

.order-ledger div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

.order-ledger dt {
  color: rgba(255, 246, 231, 0.56);
  font-size: 12px;
  font-weight: 950;
}

.order-ledger dd {
  margin: 0;
  color: var(--bone);
  font-size: 13px;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.production-rail {
  position: sticky;
  top: 71px;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 237, 220, 0.92);
  backdrop-filter: blur(18px);
}

.production-rail span {
  min-height: 44px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.production-rail b {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 19, 15, 0.1);
  color: var(--ink);
  font-size: 11px;
}

.production-rail .done,
.production-rail .active {
  border-color: rgba(20, 114, 104, 0.3);
  color: var(--ink);
}

.production-rail .active {
  background: var(--ink);
  color: var(--bone);
}

.production-rail .active b {
  background: var(--gold);
}

.desk-grid {
  display: grid;
  gap: 18px;
  padding: 24px 18px;
}

.section-title {
  margin-bottom: 16px;
}

.section-title h3 {
  margin: 6px 0 8px;
  font-size: 26px;
  line-height: 1.18;
  text-wrap: balance;
}

.section-title p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.application-form,
.production-brief,
.waiting-screen,
.legal-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--tight-shadow);
}

.application-form {
  display: grid;
  gap: 16px;
  padding: 18px;
}

fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 17px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

fieldset:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

legend {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 950;
}

label {
  display: grid;
  gap: 7px;
}

label > span,
.brief-header span,
.return-ticket span,
.delivery-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(31, 26, 19, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 850;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 13px;
  line-height: 1.62;
}

.choice-grid,
.focus-grid {
  display: grid;
  gap: 8px;
}

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

.choice-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.choice-grid label,
.focus-grid label {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 26, 19, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.choice-grid input,
.focus-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid input:checked + span,
.focus-grid input:checked + span {
  color: var(--bone);
}

.choice-grid label:has(input:checked),
.focus-grid label:has(input:checked) {
  border-color: rgba(23, 19, 15, 0.86);
  background: var(--ink);
  color: var(--bone);
}

.check-line {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(20, 114, 104, 0.16);
  border-radius: 8px;
  background: rgba(229, 243, 238, 0.7);
}

.check-line input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--jade);
}

.check-line span {
  color: #33443f;
  line-height: 1.52;
}

.form-error {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(183, 64, 49, 0.1);
  color: var(--cinnabar);
  font-weight: 950;
}

.primary-action,
.secondary-action {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 950;
}

.primary-action {
  background:
    linear-gradient(180deg, rgba(196, 72, 55, 1), rgba(163, 51, 39, 1));
  box-shadow: 0 18px 38px rgba(183, 64, 49, 0.2);
}

.secondary-action {
  background: var(--jade);
}

.production-brief {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(17, 22, 29, 0.97), rgba(28, 36, 45, 0.98)),
    var(--panel);
  color: var(--bone);
}

.brief-header {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.brief-header strong {
  font-size: 20px;
  line-height: 1.32;
}

.production-brief ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.production-brief li {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
}

.production-brief b {
  color: var(--gold);
}

.production-brief li span,
.review-upsell p {
  color: rgba(255, 246, 231, 0.7);
  line-height: 1.6;
}

.review-upsell {
  margin: 18px;
  padding: 15px;
  border: 1px solid rgba(228, 189, 105, 0.28);
  border-radius: 8px;
  background: rgba(228, 189, 105, 0.08);
}

.review-upsell small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.review-upsell p {
  margin: 8px 0 0;
  font-size: 14px;
}

.review-upsell .upgrade-link,
.upgrade-cta {
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(20, 114, 104, 0.18);
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.waiting-screen {
  display: grid;
  gap: 18px;
  margin: 24px 18px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(17, 22, 29, 0.97), rgba(7, 9, 12, 0.99)),
    var(--panel);
  color: var(--bone);
}

.waiting-screen[hidden] {
  display: none;
}

.waiting-head h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.18;
  text-wrap: balance;
}

.waiting-head p:last-child {
  margin: 0;
  color: rgba(255, 246, 231, 0.72);
}

.making-meter {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.making-meter span {
  color: var(--gold);
  font-weight: 950;
}

.making-meter div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 246, 231, 0.12);
}

.making-meter i {
  display: block;
  width: 18%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold), var(--jade));
  transition: width 0.3s ease;
}

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

.status-stack article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  padding: 13px;
  border: 1px solid rgba(255, 246, 231, 0.12);
  border-radius: 8px;
  background: rgba(255, 246, 231, 0.055);
}

.status-stack b {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 246, 231, 0.08);
  color: var(--gold);
}

.status-stack strong {
  line-height: 1.3;
}

.status-stack span {
  color: rgba(255, 246, 231, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.status-stack article.active {
  border-color: rgba(228, 189, 105, 0.44);
  background: rgba(228, 189, 105, 0.12);
}

.status-stack article.done b {
  background: var(--jade);
  color: var(--bone);
}

.receipt-guard {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(99, 224, 171, 0.24);
  border-radius: 8px;
  background: rgba(99, 224, 171, 0.08);
}

.receipt-guard span {
  color: var(--jade);
  font-size: 12px;
  font-weight: 950;
}

.receipt-guard p {
  margin: 0;
  color: rgba(255, 246, 231, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.return-ticket,
.delivery-note,
.delivery-message-card,
.save-summary-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(228, 189, 105, 0.24);
  border-radius: 8px;
  background: rgba(255, 246, 231, 0.07);
}

.return-ticket strong {
  color: var(--bone);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.delivery-note {
  grid-template-columns: 1fr;
  border-color: rgba(20, 114, 104, 0.28);
}

.delivery-note div {
  display: grid;
  gap: 4px;
}

.delivery-note strong {
  color: var(--bone);
}

.delivery-message-card,
.save-summary-card {
  border-color: rgba(255, 246, 231, 0.14);
  background:
    linear-gradient(135deg, rgba(228, 189, 105, 0.1), rgba(20, 114, 104, 0.08)),
    rgba(255, 246, 231, 0.055);
}

.delivery-message-card span,
.save-summary-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.delivery-message-card strong {
  color: var(--bone);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.save-summary-card pre {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: rgba(255, 246, 231, 0.78);
  font: inherit;
  font-size: 13px;
  line-height: 1.65;
}

.human-review-promise {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(228, 189, 105, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 189, 105, 0.18), rgba(255, 246, 231, 0.02)),
    rgba(17, 22, 29, 0.96);
  color: var(--bone);
  box-shadow: var(--tight-shadow);
}

.human-review-promise span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.human-review-promise h4 {
  margin: 8px 0 10px;
  font-size: 23px;
  line-height: 1.28;
  text-wrap: balance;
}

.human-review-promise p {
  margin-bottom: 0;
  color: rgba(255, 246, 231, 0.76);
}

.human-review-promise ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.human-review-promise li {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255, 246, 231, 0.13);
  border-radius: 8px;
  background: rgba(255, 246, 231, 0.05);
}

.human-review-promise b {
  color: var(--bone);
  font-size: 14px;
}

.human-review-promise .upgrade-cta {
  margin-top: 0;
  background: var(--gold);
  color: #24180d;
}

.review-loop {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(99, 224, 171, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(99, 224, 171, 0.1), rgba(228, 189, 105, 0.08)),
    rgba(255, 246, 231, 0.06);
}

.review-loop-head {
  display: grid;
  gap: 7px;
}

.review-loop-head span,
.review-capture span,
.referral-card span,
.review-benefit-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.review-loop-head h4 {
  margin: 0;
  color: var(--bone);
  font-size: 18px;
  line-height: 1.35;
}

.review-loop-head p {
  margin: 0;
  color: rgba(255, 246, 231, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.review-capture {
  display: grid;
  gap: 12px;
}

.review-capture strong {
  color: var(--bone);
  font-size: 14px;
  line-height: 1.5;
}

.review-capture fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.review-capture legend {
  margin-bottom: 8px;
  color: var(--bone);
  font-size: 13px;
  font-weight: 950;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.reward-grid label {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 52px;
  padding: 10px;
  border: 1px solid rgba(255, 246, 231, 0.16);
  border-radius: 8px;
  background: rgba(17, 19, 20, 0.5);
}

.reward-grid label:has(input:checked) {
  border-color: rgba(99, 224, 171, 0.46);
  background: rgba(99, 224, 171, 0.12);
}

.reward-grid span {
  color: var(--bone);
  font-size: 12px;
  line-height: 1.35;
}

.review-capture label,
.quote-grid {
  display: grid;
  gap: 7px;
}

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

.review-capture select,
.review-capture textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 246, 231, 0.18);
  border-radius: 8px;
  background: rgba(17, 19, 20, 0.74);
  color: var(--bone);
  font-weight: 850;
}

.review-capture textarea {
  resize: vertical;
  min-height: 86px;
  padding: 11px;
  line-height: 1.5;
}

.review-capture textarea::placeholder {
  color: rgba(255, 246, 231, 0.38);
}

.review-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(255, 246, 231, 0.14);
  border-radius: 8px;
  background: rgba(255, 246, 231, 0.05);
}

.review-consent span {
  color: rgba(255, 246, 231, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.referral-card {
  display: grid;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(228, 189, 105, 0.32);
  border-radius: 8px;
  background: rgba(228, 189, 105, 0.08);
}

.referral-card div:first-child {
  display: grid;
  gap: 7px;
}

.referral-card strong {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(228, 189, 105, 0.38);
  border-radius: 8px;
  background: rgba(17, 19, 20, 0.72);
  color: var(--bone);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  letter-spacing: 0;
}

.referral-card p,
.referral-card small,
.review-benefit-note p {
  margin: 0;
  color: rgba(255, 246, 231, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

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

.review-benefit-note {
  display: grid;
  gap: 8px;
  padding: 13px;
  border: 1px solid rgba(255, 246, 231, 0.14);
  border-radius: 8px;
  background: rgba(17, 19, 20, 0.58);
}

.review-benefit-note a {
  color: var(--jade);
  font-size: 13px;
  font-weight: 950;
}

.legal-note {
  margin: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.legal-note strong {
  display: block;
  margin-bottom: 8px;
}

.legal-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 70;
  width: min(calc(100% - 32px), 420px);
  padding: 13px 16px;
  border-radius: 8px;
  background: var(--bg);
  color: var(--bone);
  font-weight: 950;
  text-align: center;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

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

@media (min-width: 760px) {
  .fulfillment-shell {
    width: 780px;
    max-width: 780px;
  }

  .handoff-hero {
    grid-template-columns: 1fr 0.82fr;
    min-height: 560px;
    align-items: end;
    padding-left: 36px;
    padding-right: 36px;
  }

  .handoff-hero::before {
    left: 36px;
    right: 36px;
    font-size: 76px;
  }

  .handoff-copy h2 {
    font-size: 54px;
  }

  .desk-grid {
    grid-template-columns: 1fr 0.76fr;
    align-items: start;
    padding-left: 36px;
    padding-right: 36px;
  }

  .waiting-screen,
  .legal-note {
    margin-left: 36px;
    margin-right: 36px;
  }

  .delivery-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 420px) {
  .workbench-topbar {
    grid-template-columns: 40px 1fr auto;
    padding-left: 14px;
    padding-right: 14px;
  }

  .handoff-hero {
    min-height: 500px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .handoff-hero::before {
    font-size: 39px;
  }

  .handoff-copy h2 {
    max-width: 100%;
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .order-ledger {
    grid-template-columns: 1fr;
  }

  .production-rail {
    top: 70px;
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .production-rail span {
    font-size: 11px;
  }

  .desk-grid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .choice-grid,
  .choice-grid.two {
    grid-template-columns: 1fr;
  }

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

  .reward-grid,
  .referral-actions {
    grid-template-columns: 1fr;
  }
}


.support-guard {
  display: grid;
  gap: 10px;
}

.support-guard strong {
  color: var(--gold, #e4bd69);
}

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

.support-guard .guard-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 246, 231, 0.18);
  background: rgba(255, 246, 231, 0.08);
  color: inherit;
  text-decoration: none;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 520px) {
  .support-guard .guard-grid {
    grid-template-columns: 1fr;
  }
}
