:root {
  color-scheme: light;
  --red: #d7192a;
  --red-dark: #a91522;
  --ink: #1d252d;
  --muted: #66717d;
  --line: #d8e0e7;
  --surface: #ffffff;
  --soft: #f4f7f9;
  --teal: #1f7a8c;
  --ok: #137547;
  --warn: #9a5b00;
  --danger: #b42318;
  --font-zh: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", system-ui, sans-serif;
  --font-ja: "Noto Sans JP", "Yu Gothic", "YuGothic", "Hiragino Sans", "Meiryo", system-ui, sans-serif;
  font-family: var(--font-zh);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.is-hidden {
  display: none !important;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
}

html:lang(ja) {
  font-family: var(--font-ja);
}

html:lang(zh-Hant) {
  font-family: var(--font-zh);
}

button,
input,
textarea {
  font: inherit;
}

button {
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

button:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(16px, 5vw, 64px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand,
.staff-link {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.admin-logo {
  height: 34px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 30px;
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  letter-spacing: .08em;
}

.staff-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-dark);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.lang-switch.light {
  border-color: var(--line);
  background: #edf2f6;
  backdrop-filter: none;
}

.lang-button {
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: transparent;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 900;
}

.lang-switch.light .lang-button {
  color: var(--muted);
}

.lang-button.active {
  background: #fff;
  color: #111827;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: clamp(22px, 5vw, 56px);
  min-height: 430px;
  padding: clamp(28px, 6vw, 72px) clamp(16px, 5vw, 64px);
  background: linear-gradient(180deg, #fff 0%, #eef3f6 100%);
  border-bottom: 1px solid var(--line);
}

.hero h1,
.admin-main h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
}

.hero img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.eyebrow,
.step-label {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--red-dark);
}

.workspace {
  width: min(940px, calc(100% - 32px));
  margin: 28px auto 72px;
}

.workspace.compact {
  width: min(720px, calc(100% - 32px));
}

.workspace.admin-workspace {
  width: min(1160px, calc(100% - 32px));
}

.panel,
.coupon {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(29, 37, 45, .08);
}

.panel {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
}

.panel h1,
.panel h2,
.coupon h2 {
  margin: 4px 0 0;
}

.panel h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
}

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

.field {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #bdc9d3;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.primary,
.secondary,
.danger {
  width: 100%;
  padding: 0 18px;
}

.primary {
  background: var(--red);
  color: #fff;
}

.secondary {
  background: #26313b;
  color: #fff;
}

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

.ghost {
  min-height: 40px;
  padding: 0 14px;
  background: #edf2f6;
  color: var(--ink);
}

.message {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff4e5;
  border: 1px solid #ffd089;
  color: #5d3900;
  line-height: 1.6;
}

.message.success {
  background: #e9f7ef;
  border-color: #b9e2ca;
  color: #0f5132;
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.survey {
  gap: 28px;
}

#questions {
  display: grid;
  gap: 20px;
}

.question {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.question h3 {
  margin: 0;
  font-size: 18px;
}

.hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.options {
  display: grid;
  gap: 10px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid #d8e0e7;
  border-radius: 8px;
  background: #fff;
  line-height: 1.55;
}

.option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.coupon-wrap {
  display: grid;
  gap: 16px;
}

.coupon {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 5vw, 40px);
}

.coupon::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--red);
}

.coupon-code {
  margin: 20px 0;
  padding: 18px;
  border: 2px dashed #bdc9d3;
  border-radius: 8px;
  background: #f8fafb;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 900;
  text-align: center;
  overflow-wrap: anywhere;
}

dl {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
}

dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 700;
}

dd {
  margin: 0;
  font-weight: 800;
}

.status-unused {
  color: var(--ok);
}

.status-used {
  color: var(--danger);
}

.status-expired {
  color: var(--warn);
}

.admin-main {
  padding-top: 26px;
}

.search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  align-items: end;
  gap: 12px;
}

.staff-coupon {
  box-shadow: none;
}

.login-panel {
  width: min(720px, 100%);
  margin: 0 auto;
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #edf2f6;
}

.tab-button {
  min-height: 42px;
  background: transparent;
  color: var(--muted);
}

.tab-button.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(29, 37, 45, .08);
}

.tab-panel {
  display: grid;
  gap: 22px;
}

.dashboard-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.fit {
  width: auto;
  min-width: 132px;
}

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

.metric {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.metric span {
  color: var(--muted);
  font-weight: 700;
}

.metric strong {
  font-size: 34px;
  line-height: 1;
}

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

.chart-block,
.free-text-block {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.chart-block h3,
.free-text-block h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.45;
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(120px, 1.4fr) 38px;
  gap: 10px;
  align-items: center;
  min-height: 32px;
}

.chart-label {
  color: var(--ink);
  line-height: 1.45;
}

.chart-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1e8ee;
}

.chart-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.chart-row strong {
  text-align: right;
}

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

.free-text-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.free-text-item:last-child {
  border-bottom: 0;
}

.free-text-item p {
  margin: 0 0 6px;
  line-height: 1.7;
}

.free-text-item span {
  color: var(--muted);
  font-size: 13px;
}

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

.history-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.history-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.history-head h2 {
  margin: 4px 0 0;
}

.note-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
  align-items: end;
}

.note-form textarea {
  min-height: 92px;
}

.timeline-list {
  display: grid;
  gap: 0;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 0 0 18px;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  bottom: 0;
  width: 2px;
  background: #d8e0e7;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.timeline-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.timeline-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #edf2f6;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.timeline-meta time,
.timeline-item small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.timeline-item p {
  margin: 8px 0 4px;
  line-height: 1.65;
}

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

.response-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.response-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin-bottom: 10px;
}

.response-title strong {
  font-size: 20px;
}

.response-title span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #edf2f6;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.response-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
}

.response-details div {
  display: block;
  padding: 0;
  border-bottom: 0;
}

.response-details dt {
  margin-bottom: 2px;
  font-size: 13px;
}

.response-details dd {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
  }

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

  .hero h1,
  .admin-main h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .form-head,
  .search-row {
    grid-template-columns: 1fr;
    display: grid;
  }

  .admin-tabs,
  .metric-grid,
  .charts,
  .export-actions,
  .note-form,
  .response-item,
  .response-details {
    grid-template-columns: 1fr;
  }

  .dashboard-actions,
  .action-row {
    display: grid;
    justify-content: stretch;
  }

  .fit {
    width: 100%;
  }

  .chart-row {
    grid-template-columns: 1fr 72px;
  }

  .chart-label {
    grid-column: 1 / -1;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Customer survey redesign */
.survey-shell {
  min-height: 100vh;
  background: #0f172a;
  color: #172033;
  font-family: var(--font-zh);
}

html:lang(ja) .survey-shell {
  font-family: var(--font-ja);
}

.survey-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(228, 0, 108, .2), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(14, 165, 233, .16), transparent 30%),
    linear-gradient(135deg, #111827 0%, #0f172a 54%, #1f2937 100%);
}

.survey-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px clamp(16px, 4vw, 42px);
}

.survey-brand {
  color: #fff;
  text-decoration: none;
}

.survey-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.survey-brand span:last-child {
  display: grid;
  gap: 2px;
}

.survey-brand small {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.survey-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 42px;
  padding: 7px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .22);
}

.survey-logo {
  max-width: 104px;
  max-height: 26px;
}

.survey-brand-text {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.survey-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 32px;
  border-radius: 7px;
  background: #e4002b;
  color: #fff;
  font-weight: 950;
  letter-spacing: .08em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.survey-brand-mark.large {
  width: 104px;
  height: 54px;
  font-size: 24px;
}

.survey-staff-link {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.survey-stage {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 92px 16px 28px;
}

.survey-card {
  width: min(640px, 100%);
  overflow: visible;
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 34px 70px -26px rgba(0, 0, 0, .54), 0 8px 28px rgba(15, 23, 42, .12);
}

.survey-screen {
  padding: clamp(24px, 5vw, 36px);
}

.survey-message {
  margin: 22px 24px 0;
}

.survey-hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 54px;
  margin: 0 auto 20px;
  padding: 10px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.survey-hero-logo img {
  display: block;
  width: 118px;
  height: auto;
}

.survey-hero-badge {
  position: relative;
  display: grid;
  place-items: center;
  gap: 16px;
  max-width: 380px;
  margin: 0 auto 28px;
  padding: 34px 24px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(160deg, #0f172a, #1f2937);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(230px, 74%);
  height: auto;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .22);
}

.survey-hero-badge::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  top: -60px;
  right: -44px;
  border-radius: 50%;
  background: rgba(228, 0, 108, .26);
}

.survey-kicker {
  margin: 0 0 12px;
  color: #e4006c;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.survey-screen h1,
.survey-screen h2 {
  margin: 0;
  color: #111827;
  line-height: 1.18;
  letter-spacing: 0;
}

.survey-screen h1 {
  font-size: clamp(34px, 8vw, 50px);
  font-weight: 950;
  text-align: center;
}

.survey-screen h2 {
  font-size: clamp(25px, 6vw, 34px);
  font-weight: 950;
}

.survey-lead {
  max-width: 480px;
  margin: 18px auto 0;
  color: #5b6472;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.survey-lead.small {
  font-size: 14px;
}

.survey-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.survey-pills span {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.wizard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.wizard-head p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.65;
}

.wizard-count {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #e4006c;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 950;
}

.wizard-form,
.wizard-question,
.wizard-options {
  display: grid;
  gap: 12px;
}

.wizard-field {
  display: grid;
  gap: 9px;
  color: #253244;
  font-weight: 900;
}

.wizard-field input,
.wizard-field textarea {
  width: 100%;
  border: 1.5px solid #dbe3eb;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  padding: 15px 16px;
  outline: none;
  font: inherit;
  font-weight: 750;
}

.wizard-field input:focus,
.wizard-field textarea:focus {
  border-color: #e4006c;
  box-shadow: 0 0 0 4px rgba(228, 0, 108, .08);
}

.wizard-primary,
.wizard-ghost {
  min-height: 52px;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 950;
}

.wizard-primary {
  background: linear-gradient(120deg, #e4006c, #ff4e93);
  color: #fff;
  box-shadow: 0 16px 28px -16px rgba(228, 0, 108, .8);
}

.wizard-primary:disabled {
  background: #cbd5e1;
  box-shadow: none;
}

.wizard-ghost {
  margin-top: 12px;
  background: #f1f5f9;
  color: #334155;
}

.wizard-progress {
  height: 7px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e8f0;
}

.wizard-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e4006c, #ff4e93);
  transition: width .28s ease;
}

.wizard-option {
  display: grid;
  grid-template-columns: 24px 26px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1.5px solid #dbe3eb;
  border-radius: 16px;
  background: #fff;
  color: #172033;
  padding: 14px 16px;
  text-align: left;
  font-weight: 850;
  line-height: 1.45;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

html:lang(ja) .wizard-option {
  font-weight: 800;
}

html:lang(ja) .survey-screen h1,
html:lang(ja) .survey-screen h2,
html:lang(ja) .wizard-primary,
html:lang(ja) .wizard-ghost {
  font-weight: 900;
}

html:lang(ja) .wizard-head p,
html:lang(ja) .survey-lead {
  font-weight: 500;
}

.wizard-option:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -18px rgba(15, 23, 42, .35);
}

.wizard-option.selected {
  border-color: #e4006c;
  background: rgba(228, 0, 108, .07);
  box-shadow: 0 12px 24px -18px rgba(228, 0, 108, .8);
}

.option-check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 7px;
  color: #fff;
  font-size: 13px;
}

.wizard-option.selected .option-check {
  border-color: #e4006c;
  background: #e4006c;
}

.option-letter {
  color: #94a3b8;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 12px;
  font-weight: 950;
}

.other-input {
  margin-top: 4px;
}

.wizard-nav {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.wizard-nav .wizard-ghost {
  margin-top: 0;
}

.reward-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4006c, #ff4e93);
  color: #fff;
  font-size: 40px;
  font-weight: 950;
  box-shadow: 0 18px 32px -16px rgba(228, 0, 108, .9);
}

.coupon-screen {
  text-align: center;
}

.coupon-ticket {
  margin-top: 24px;
  padding: 24px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(150deg, #0f172a, #1f2937);
  color: #fff;
  text-align: left;
}

.ticket-label {
  color: #ff8ab8;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.coupon-ticket strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(34px, 9vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.coupon-ticket p {
  margin: 10px 0 0;
  color: #cbd5e1;
}

.ticket-code {
  margin: 22px 0;
  padding: 16px;
  border: 1.5px dashed rgba(255, 255, 255, .34);
  border-radius: 14px;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 950;
  letter-spacing: .05em;
  text-align: center;
}

.coupon-ticket dl {
  margin: 0;
}

.coupon-ticket dl div {
  grid-template-columns: 86px 1fr;
  border-color: rgba(255, 255, 255, .16);
}

.coupon-ticket dt {
  color: #94a3b8;
}

.coupon-ticket dd {
  color: #fff;
}

@media (max-width: 680px) {
  .survey-topbar {
    position: relative;
    padding-bottom: 0;
    align-items: flex-start;
  }

  .survey-stage {
    min-height: auto;
    padding-top: 18px;
  }

  .survey-card {
    max-height: none;
    border-radius: 18px;
  }

  .survey-brand small {
    display: none;
  }

  .survey-logo-plate {
    min-width: 104px;
    height: 38px;
    padding: 7px 10px;
  }

  .survey-logo {
    max-width: 92px;
    max-height: 22px;
  }

  .survey-brand-text {
    font-size: 13px;
  }

  .topbar-actions {
    display: grid;
    justify-items: end;
    gap: 8px;
  }

  .lang-button {
    min-height: 30px;
    padding: 0 9px;
    font-size: 12px;
  }

  .survey-staff-link {
    padding: 9px 11px;
  }

  .wizard-head {
    display: grid;
  }

  .wizard-count {
    justify-self: start;
  }

  .wizard-nav {
    grid-template-columns: 1fr;
  }

  .wizard-option {
    grid-template-columns: 24px 22px 1fr;
  }

  .coupon-ticket dl div {
    grid-template-columns: 1fr;
  }
}
