:root {
  color-scheme: light;
  --paper: #edf7f1;
  --paper-light: #ffffff;
  --field: #f8fcfa;
  --ink: #102a22;
  --ink-soft: #4d665d;
  --line: #bdd4ca;
  --line-light: #dce9e3;
  --jade: #118762;
  --jade-dark: #075b42;
  --jade-pale: #d9f2e6;
  --action-start: #075b42;
  --action-end: #0f7f5c;
  --on-accent: #ffffff;
  --step-jade: #0e7457;
  --step-olive: #586d16;
  --step-gold: #755808;
  --signal: #b48618;
  --signal-text: #715213;
  --placeholder: #5c6f67;
  --focus-ring: #006b4d;
  --danger: #a33d32;
  --card: rgba(255, 255, 255, 0.82);
  --card-solid: #f9fcfa;
  --glow-left: rgba(91, 190, 155, 0.22);
  --glow-right: rgba(191, 185, 104, 0.13);
  --grid-line: rgba(30, 109, 82, 0.055);
  --shadow: 0 18px 44px rgba(21, 73, 55, 0.12);
  --shadow-soft: 0 8px 22px rgba(21, 73, 55, 0.08);
  --sans: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0d1c18;
  --paper-light: #152a23;
  --field: #10221c;
  --ink: #e9f5ef;
  --ink-soft: #b5cbc1;
  --line: #375c4f;
  --line-light: #28473d;
  --jade: #54d3a6;
  --jade-dark: #32b889;
  --jade-pale: #193e31;
  --action-start: #32b889;
  --action-end: #54d3a6;
  --on-accent: #062c21;
  --step-jade: #54d3a6;
  --step-olive: #819b2a;
  --step-gold: #c89b22;
  --signal: #d9b649;
  --signal-text: #f0d982;
  --placeholder: #a8bdb4;
  --focus-ring: #73e2bb;
  --danger: #ff9488;
  --card: rgba(21, 42, 35, 0.88);
  --card-solid: #152a23;
  --glow-left: rgba(27, 160, 113, 0.17);
  --glow-right: rgba(184, 148, 42, 0.10);
  --grid-line: rgba(149, 220, 194, 0.055);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--paper);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.ambient-glow {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 13% 38%, var(--glow-left), transparent 34%),
    radial-gradient(circle at 84% 48%, var(--glow-right), transparent 32%),
    linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.26) 50%, transparent 68%);
  pointer-events: none;
}

button,
input,
textarea {
  min-width: 0;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:not(:disabled),
a:not([aria-disabled="true"]) {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

[aria-disabled="true"] {
  cursor: help;
  opacity: 0.55;
}

.page-shell {
  width: min(calc(100% - 40px), 1600px);
  margin: 0 auto;
  padding-bottom: 52px;
}

.site-header {
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  min-height: 112px;
  padding: 20px 0 24px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.brand-lockup h1 {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--jade-dark);
  font-size: clamp(30px, 3.3vw, 46px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
  text-align: center;
  white-space: normal;
}

.online-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 4px 13px;
  color: var(--jade-dark);
  background: var(--card);
  border: 1px solid var(--line-light);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  font-weight: 800;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--jade);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jade-pale);
}

.header-actions {
  display: flex;
  flex-wrap: nowrap;
  min-width: 0;
  max-width: 100%;
  justify-content: flex-end;
  gap: 5px;
  padding-top: 2px;
}

.pill-link {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

#locale-toggle,
#theme-toggle {
  flex: 0 0 auto;
  white-space: nowrap;
}

.pill-link:not([aria-disabled="true"]):hover {
  color: var(--jade-dark);
  border-color: var(--line);
  transform: translateY(-1px);
}

.button-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--jade-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-layout {
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 24px;
  align-items: start;
}

.left-column,
.redeem-column,
.redeem-form {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.service-card,
.result-receipt {
  min-width: 0;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.service-card {
  padding: 26px;
}

.card-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.card-heading h2 {
  min-width: 0;
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.heading-icon {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--jade-dark);
  background: var(--jade-pale);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 900;
}

.compact-heading .quiet-action {
  margin-left: auto;
}

.quiet-action {
  padding: 5px 8px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.quiet-action:hover {
  color: var(--jade-dark);
  background: var(--jade-pale);
}

.support-card {
  position: relative;
  overflow: hidden;
}

.support-card::after {
  position: absolute;
  right: -34px;
  bottom: -48px;
  width: 124px;
  height: 124px;
  content: "";
  background: radial-gradient(circle, var(--jade-pale), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.support-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
}

.support-copy-block {
  min-width: 0;
}

.support-line {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.acquisition-action {
  margin-left: auto;
  color: var(--jade-dark);
  background: var(--jade-pale);
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.inventory-tile {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 94px;
  align-content: space-between;
  gap: 9px;
  padding: 13px 11px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--card-solid), var(--field));
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--jade);
  border-radius: 10px;
}

.inventory-pro5x {
  border-top-color: #748e3c;
}

.inventory-pro20x {
  border-top-color: #347a64;
}

.plan-heading {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.plan-heading b {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plan-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--jade-dark);
  background: var(--jade-pale);
  border-radius: 50%;
  font-size: 17px;
}

.inventory-tile output {
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.inventory-available {
  color: var(--jade-dark) !important;
}

.inventory-low {
  color: var(--signal-text) !important;
}

.inventory-out,
.inventory-error {
  color: var(--danger) !important;
}

.guide-panel {
  padding-bottom: 24px;
}

.guide-timeline {
  position: relative;
  display: grid;
  gap: 13px;
  margin-top: 17px;
}

.guide-timeline::before {
  position: absolute;
  z-index: 0;
  top: 25px;
  bottom: 25px;
  left: 20px;
  width: 2px;
  background: var(--jade-pale);
  content: "";
}

.guide-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 15px;
  background: color-mix(in srgb, var(--card-solid) 92%, transparent);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--on-accent);
  background: var(--step-jade);
  border: 4px solid var(--jade-pale);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-light);
  font-size: 14px;
  font-weight: 900;
}

.step-number-olive {
  background: var(--step-olive);
}

.step-number-gold {
  background: var(--step-gold);
}

.step-copy {
  min-width: 0;
}

.step-copy h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.step-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.card-heading h2,
.step-copy h3,
.step-copy p,
.intro-card p,
.result-title,
.result-detail,
.query-result p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.session-plan-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 11px 14px;
  color: var(--ink-soft);
  background: var(--jade-pale);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13px;
}

.session-plan-result strong {
  color: var(--jade-dark);
  font-size: 15px;
}

.session-plan-result-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.session-plan-refresh {
  flex: 0 0 auto;
  padding: 7px 12px;
  color: var(--jade-dark);
  background: var(--jade-pale);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.session-plan-refresh:hover:not(:disabled) {
  border-color: var(--jade);
}

.session-plan-refresh:disabled {
  cursor: wait;
  opacity: 0.72;
}

.session-plan-result.is-unavailable {
  border-color: var(--danger);
}

.session-plan-result.is-unavailable strong {
  color: var(--danger);
}

.recharge-progress {
  margin-top: 13px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--action-start), var(--jade));
  border-radius: inherit;
  transition: width 420ms ease;
}

.recharge-progress.is-failed .progress-fill {
  background: var(--danger);
}

.recharge-progress.is-success .progress-fill {
  background: var(--jade);
}

.guide-link {
  display: inline-flex;
  max-width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 6px 15px;
  color: var(--jade-dark);
  background: var(--jade-pale);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.intro-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.form-card {
  padding: 25px 27px;
}

.form-card .card-heading {
  margin-bottom: 17px;
}

input,
textarea {
  display: block;
  width: 100%;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

input {
  min-height: 54px;
  padding: 0 16px;
}

textarea {
  min-height: 286px;
  padding: 16px;
  line-height: 1.65;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
}

input:focus,
textarea:focus {
  border-color: var(--jade);
  box-shadow: 0 0 0 4px var(--jade-pale);
}

.session-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.session-heading .card-heading {
  margin-bottom: 0;
}

.field-actions {
  display: flex;
  flex: 0 1 auto;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.field-action {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px 10px;
  color: var(--ink-soft);
  background: var(--jade-pale);
  border: 1px solid var(--line-light);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
  white-space: normal;
}

.field-action:hover {
  color: var(--jade-dark);
  border-color: var(--line);
}

.field-note {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--on-accent);
  background: linear-gradient(100deg, var(--action-start), var(--action-end));
  border: 1px solid var(--jade-dark);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(7, 91, 66, 0.20);
  font-size: 15px;
  font-weight: 900;
  transition: box-shadow 150ms ease, transform 150ms ease;
}

.primary-action {
  width: 100%;
}

.primary-action:not(:disabled):hover,
.secondary-action:not(:disabled):hover {
  box-shadow: 0 16px 28px rgba(7, 91, 66, 0.28);
  transform: translateY(-1px);
}

.primary-action:disabled,
.secondary-action:disabled,
.quiet-action:disabled,
.field-action:disabled {
  cursor: wait;
  opacity: 0.62;
}

.rocket {
  font-size: 18px;
}

.result-receipt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  background: var(--jade-pale);
  border-color: var(--jade);
}

.result-receipt.is-error,
.query-result.is-error {
  border-color: var(--danger);
}

.receipt-stamp {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--on-accent);
  background: var(--step-jade);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.result-title,
.result-detail,
.query-result p {
  margin: 0;
}

.result-title {
  font-weight: 900;
}

.result-detail,
.query-result p {
  color: var(--ink-soft);
  font-size: 12px;
}

.query-dialog {
  width: min(calc(100% - 40px), 520px);
  max-width: 520px;
  max-height: min(720px, calc(100dvh - 40px));
  margin: auto;
  padding: 28px;
  overflow: auto;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(6, 36, 27, 0.32);
}

.query-dialog::backdrop {
  background: rgba(6, 28, 21, 0.56);
  backdrop-filter: blur(5px);
}

.experience-dialog {
  width: min(calc(100% - 40px), 500px);
  max-width: 500px;
  max-height: min(720px, calc(100dvh - 40px));
  margin: auto;
  padding: 28px;
  overflow: auto;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(6, 36, 27, 0.38);
}

.experience-dialog::backdrop {
  background: rgba(6, 28, 21, 0.64);
  backdrop-filter: blur(7px);
}

.announcement-dialog {
  text-align: center;
}

.announcement-dialog .dialog-kicker {
  margin-top: 4px;
}

.announcement-dialog h2 {
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.15;
}

.announcement-copy {
  margin-inline: auto;
  white-space: pre-wrap;
}

.announcement-art {
  margin: -12px -12px 22px;
  overflow: hidden;
  background: var(--jade-pale);
  border: 1px solid var(--line-light);
  border-radius: 12px;
}

.announcement-art img {
  display: block;
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.announcement-dialog .secondary-action {
  width: 100%;
}

.support-qr-image {
  display: block;
  width: 112px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--line-light);
  border-radius: 12px;
}

.support-qr-image[hidden] {
  display: none;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.dialog-heading h2 {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-size: 22px;
}

.dialog-kicker {
  margin: 0;
  color: var(--jade-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.dialog-close {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--field);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.dialog-description {
  margin: 16px 0 22px;
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 13px;
}

.query-form {
  display: grid;
  gap: 10px;
}

.query-form label {
  font-size: 13px;
  font-weight: 900;
}

.secondary-action {
  min-height: 52px;
  margin-top: 3px;
}

.query-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 14px;
  background: var(--jade-pale);
  border: 1px solid var(--jade);
  border-radius: 10px;
}

.query-indicator {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 5px;
  background: var(--jade);
  border-radius: 50%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --paper: #0d1c18;
    --paper-light: #152a23;
    --field: #10221c;
    --ink: #e9f5ef;
    --ink-soft: #b5cbc1;
    --line: #375c4f;
    --line-light: #28473d;
    --jade: #54d3a6;
    --jade-dark: #32b889;
    --jade-pale: #193e31;
    --action-start: #32b889;
    --action-end: #54d3a6;
    --on-accent: #062c21;
    --step-jade: #54d3a6;
    --step-olive: #819b2a;
    --step-gold: #c89b22;
    --signal-text: #f0d982;
    --placeholder: #a8bdb4;
    --focus-ring: #73e2bb;
    --danger: #ff9488;
    --card: rgba(21, 42, 35, 0.88);
    --card-solid: #152a23;
    --glow-left: rgba(27, 160, 113, 0.17);
    --glow-right: rgba(184, 148, 42, 0.10);
    --grid-line: rgba(149, 220, 194, 0.055);
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 8px 22px rgba(0, 0, 0, 0.22);
  }
}

@media (min-width: 821px) {
  .left-column {
    align-self: start;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-balance {
    display: none;
  }

  .header-actions {
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 28px), 680px);
  }

  .site-header {
    gap: 18px;
    padding-bottom: 26px;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }

  .left-column {
    order: 1;
  }

  .redeem-column {
    order: 2;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100% - 20px);
    padding-bottom: 26px;
  }

  .site-header {
    min-height: 0;
    padding-top: 16px;
  }

  .brand-lockup {
    flex-wrap: wrap;
    gap: 9px;
  }

  .brand-lockup h1 {
    font-size: clamp(27px, 9vw, 36px);
  }

  .online-badge {
    min-height: 26px;
    padding: 3px 10px;
    font-size: 11px;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  #query-open {
    grid-column: 1 / -1;
  }

  .pill-link {
    width: 100%;
    padding-inline: 10px;
  }

  .service-card {
    padding: 20px 16px;
    border-radius: 11px;
  }

  .inventory-grid {
    gap: 5px;
  }

  .inventory-tile {
    min-height: 86px;
    padding: 10px 7px;
  }

  .plan-heading {
    display: grid;
    gap: 4px;
  }

  .plan-heading b {
    font-size: 10px;
  }

  .inventory-tile output {
    font-size: 11px;
  }

  .guide-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 9px;
    padding: 13px 11px;
  }

  .step-number {
    width: 32px;
    height: 32px;
  }

  .guide-timeline::before {
    left: 16px;
  }

  .support-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .support-qr-image {
    width: min(112px, 100%);
  }

  .session-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: flex-start;
  }

  .session-heading > .card-heading {
    align-items: flex-start;
  }

  .session-heading .heading-icon {
    display: none;
  }

  .field-actions {
    justify-content: flex-start;
    gap: 5px;
  }

  .field-action {
    padding-inline: 8px;
  }

  textarea {
    min-height: 220px;
  }

  .query-dialog {
    width: calc(100% - 20px);
    max-width: none;
    max-height: calc(100dvh - 20px);
    padding: 22px 18px;
    border-radius: 13px;
  }

  .experience-dialog {
    width: calc(100% - 20px);
    max-width: none;
    max-height: calc(100dvh - 20px);
    padding: 22px 18px;
    border-radius: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
