:root {
  --page: #f5f6f4;
  --surface: #ffffff;
  --surface-soft: #f8f8f6;
  --surface-peach: #fff4f1;
  --border: #dfe2df;
  --border-strong: #c8ccc9;
  --text: #202321;
  --text-muted: #626864;
  --text-faint: #858b87;
  --primary: #dd584a;
  --primary-hover: #c9493d;
  --primary-pressed: #ad3d34;
  --success: #197451;
  --success-soft: #e9f6ef;
  --warning: #98620b;
  --warning-soft: #fff6df;
  --danger: #b93e45;
  --danger-soft: #fff0f1;
  --info: #2d6f9f;
  --info-soft: #edf6fc;
  --focus: #2d6f9f;
  --shadow: 0 12px 34px rgba(32, 35, 33, 0.07);
  --radius: 8px;
  --header-height: 56px;
  --workspace-width: 1080px;
  --font-sans: Inter, "SF Pro Text", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--page);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button,
summary,
select {
  cursor: pointer;
}

button,
input,
textarea,
select,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 28%, transparent);
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.app-header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  width: min(calc(100% - 32px), var(--workspace-width));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 1px solid #f0cbc5;
  border-radius: 8px;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  min-width: 0;
  margin-left: 9px;
  gap: 7px;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1;
}

.brand-copy span {
  color: var(--text-muted);
  font-size: 12px;
}

.environment-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border: 1px solid #e7b9b2;
  border-radius: 999px;
  color: #99443a;
  background: var(--surface-peach);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.view-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(58px, 1fr));
  gap: 2px;
  min-width: 132px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.view-tab {
  min-height: 36px;
  padding: 5px 14px;
  border: 0;
  border-radius: 6px;
  color: var(--text-muted);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.view-tab:hover {
  color: var(--text);
}

.view-tab.is-active {
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 1px 4px rgba(32, 35, 33, 0.1);
}

.page-shell {
  width: min(calc(100% - 32px), var(--workspace-width));
  margin: 0 auto;
  padding: 34px 0 64px;
}

.access-gate {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px 20px;
  width: min(100%, 680px);
  margin: 68px auto 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.access-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

.access-copy h1,
.page-heading h1,
.step-heading h2,
.result-heading h2,
.privacy-rail h2 {
  letter-spacing: 0;
}

.access-copy h1 {
  margin: 2px 0 5px;
  font-size: 26px;
  line-height: 1.25;
}

.access-copy p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.access-form {
  grid-column: 1 / -1;
}

.access-form > label,
.query-surface form > label,
.field-group > label,
.demo-fields > label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 750;
}

.kicker {
  margin: 0 0 3px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.page-heading h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.page-heading p:last-child {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.readiness {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
  background: var(--surface);
  font-size: 12px;
  font-weight: 700;
}

.readiness > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warning);
}

.readiness.is-ready > span {
  background: var(--success);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 32px;
}

.workflow-surface,
.query-surface {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.workflow-surface {
  overflow: clip;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.step-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 68px;
  gap: 8px;
  color: var(--text-faint);
  font-size: 12px;
}

.step-list li + li::before {
  position: absolute;
  left: -12px;
  width: 24px;
  height: 1px;
  background: var(--border);
  content: "";
}

.step-list span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-muted);
  background: var(--surface);
  font-size: 11px;
  font-weight: 800;
}

.step-list strong {
  min-width: 0;
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.step-list .is-current,
.step-list .is-complete {
  color: var(--text);
}

.step-list .is-current span {
  border-color: var(--primary);
  color: #ffffff;
  background: var(--primary);
}

.step-list .is-complete span {
  border-color: var(--success);
  color: var(--success);
  background: var(--success-soft);
}

.compact-progress {
  display: none;
}

.flow-step {
  padding: 28px;
}

.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--primary);
  background: var(--surface-peach);
  font-size: 11px;
  font-weight: 850;
}

.step-heading h2,
.result-heading h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.step-heading p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.field-group {
  min-width: 0;
}

input[type="text"],
input[type="password"],
textarea,
select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  color: var(--text);
  background: var(--surface);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

textarea {
  min-height: 154px;
  resize: vertical;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

input::placeholder,
textarea::placeholder {
  color: #969b98;
}

input:hover,
textarea:hover,
select:hover {
  border-color: #aeb4b0;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
  border-color: var(--danger);
  background: var(--danger-soft);
}

.field-hint,
.privacy-note {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 12px;
}

.privacy-note {
  padding-left: 18px;
  background: linear-gradient(var(--info), var(--info)) 2px 0 / 3px 100% no-repeat;
}

.field-error {
  margin: 9px 0 0;
  color: var(--danger);
  font-size: 13px;
  font-weight: 650;
}

.field-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.button:not(:disabled):active {
  transform: translateY(1px);
}

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

.button-primary {
  color: #ffffff;
  background: var(--primary);
}

.button-primary:hover:not(:disabled) {
  background: var(--primary-hover);
}

.button-primary:active:not(:disabled) {
  background: var(--primary-pressed);
}

.button-secondary {
  border-color: var(--border-strong);
  color: var(--text);
  background: var(--surface);
}

.button-secondary:hover:not(:disabled) {
  border-color: #aeb4b0;
  background: var(--surface-soft);
}

.button-wide {
  min-width: 156px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

.step-actions-primary {
  margin-top: 18px;
}

.demo-codes {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.demo-codes > span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
}

.demo-code-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.demo-code-button {
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text-muted);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 700;
}

.demo-code-button:hover {
  border-color: #e4aea6;
  color: #8e3c33;
  background: var(--surface-peach);
}

.plan-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--border);
}

.plan-strip > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 14px;
  background: var(--surface-soft);
}

.plan-strip span,
.order-summary dt,
.rail-order dt {
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-strip strong {
  margin-top: 2px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-fields {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.demo-fields legend {
  margin-bottom: 13px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.check-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid #c7ddeb;
  border-radius: 7px;
  color: var(--info);
  background: var(--info-soft);
}

.check-progress strong,
.check-progress span:not(.spinner) {
  display: block;
}

.check-progress strong {
  font-size: 13px;
}

.check-progress span:not(.spinner) {
  color: #507a96;
  font-size: 12px;
}

.spinner {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 2px solid #b9d4e4;
  border-top-color: var(--info);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.order-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
}

.order-summary > div {
  min-width: 0;
  padding: 14px;
  border-bottom: 1px solid var(--border);
}

.order-summary > div:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.order-summary > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.order-summary dd,
.rail-order dd {
  min-width: 0;
  margin: 4px 0 0;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 750;
}

.notice {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid;
  border-radius: 7px;
  font-size: 13px;
}

.notice-danger {
  border-color: #efc3c6;
  color: #8e3037;
  background: var(--danger-soft);
}

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 13px;
}

.confirm-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--primary);
}

.result-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 10px;
  border: 1px solid;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.status-processing {
  border-color: #e7cf9e;
  color: var(--warning);
  background: var(--warning-soft);
}

.status-success {
  border-color: #b7dfcb;
  color: var(--success);
  background: var(--success-soft);
}

.status-failure {
  border-color: #efc3c6;
  color: var(--danger);
  background: var(--danger-soft);
}

.status-info {
  border-color: #c7ddeb;
  color: var(--info);
  background: var(--info-soft);
}

.result-live {
  margin-top: 20px;
  padding: 14px;
  border-left: 3px solid var(--warning);
  background: var(--surface-soft);
}

.result-live strong {
  display: block;
  font-size: 14px;
}

.result-live p,
.query-result > p {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.timeline {
  position: relative;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 44px;
  padding: 0 0 16px 25px;
}

.timeline li::before {
  position: absolute;
  top: 5px;
  left: 4px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--info);
  box-shadow: 0 0 0 1px var(--info);
  content: "";
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: var(--border-strong);
  content: "";
}

.timeline strong,
.timeline time {
  display: block;
}

.timeline strong {
  font-size: 13px;
}

.timeline time {
  margin-top: 2px;
  color: var(--text-faint);
  font-size: 11px;
}

.privacy-rail {
  min-width: 0;
  padding-left: 8px;
}

.privacy-rail > section,
.help-drawer {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.privacy-rail > section:first-child {
  padding-top: 3px;
}

.rail-label {
  margin: 0 0 6px;
  color: var(--text-faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-rail h2 {
  margin: 0;
  font-size: 17px;
}

.privacy-rail section > p:last-child {
  margin: 7px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.assurance-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--text-muted);
  font-size: 13px;
  list-style: none;
}

.assurance-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 7px;
}

.assurance-list span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--success);
  background: var(--success-soft);
  font-size: 11px;
  font-weight: 900;
}

.rail-order dl {
  margin: 0;
}

.rail-order dl > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
}

.rail-order dd {
  margin: 0;
  text-align: right;
}

.help-drawer summary {
  min-height: 44px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 800;
}

.help-drawer ol {
  margin: 4px 0 0;
  padding-left: 21px;
  color: var(--text-muted);
  font-size: 13px;
}

.help-drawer li + li {
  margin-top: 7px;
}

.query-heading {
  max-width: 760px;
}

.query-surface {
  width: min(100%, 760px);
  padding: 28px;
}

.query-result {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--workspace-width));
  margin: 0 auto;
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 11px;
}

@media (max-width: 860px) {
  .workspace {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 22px;
  }

  .brand-copy span {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 56px;
  }

  .app-header-inner,
  .page-shell,
  .site-footer {
    width: min(calc(100% - 24px), var(--workspace-width));
  }

  .app-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .brand-copy {
    margin-left: 7px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .environment-badge {
    min-height: 25px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .view-tabs {
    min-width: 112px;
  }

  .view-tab {
    min-height: 34px;
    padding: 5px 10px;
  }

  .page-shell {
    padding: 20px 0 42px;
  }

  .access-gate {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    margin-top: 26px;
    padding: 20px 16px;
  }

  .access-mark {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .access-copy h1 {
    font-size: 21px;
  }

  .field-action-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .field-action-row .button {
    width: 100%;
  }

  .page-heading {
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .page-heading h1 {
    font-size: 24px;
  }

  .page-heading p:last-child {
    margin-top: 4px;
    font-size: 13px;
  }

  .readiness {
    min-height: 28px;
    padding: 4px 8px;
    font-size: 10px;
  }

  .workspace {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .step-list {
    display: none;
  }

  .compact-progress {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 43px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 750;
  }

  .compact-progress progress {
    width: 100%;
    height: 5px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    color: var(--primary);
    background: var(--border);
  }

  .compact-progress progress::-webkit-progress-bar {
    border-radius: 999px;
    background: var(--border);
  }

  .compact-progress progress::-webkit-progress-value {
    border-radius: 999px;
    background: var(--primary);
  }

  .compact-progress progress::-moz-progress-bar {
    border-radius: 999px;
    background: var(--primary);
  }

  .flow-step {
    padding: 17px 16px 16px;
  }

  .step-heading {
    gap: 11px;
    margin-bottom: 16px;
  }

  .step-number {
    width: 31px;
    height: 31px;
  }

  .step-heading h2,
  .result-heading h2 {
    font-size: 18px;
  }

  .step-heading p {
    margin-top: 2px;
    font-size: 12px;
  }

  input[type="text"],
  input[type="password"],
  textarea,
  select {
    min-height: 48px;
  }

  .step-actions {
    position: sticky;
    bottom: 0;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 20px -16px -16px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
  }

  .step-actions-primary {
    display: block;
    margin-top: 14px;
  }

  .step-actions-primary .button,
  .step-actions .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 10px;
  }

  .demo-codes {
    margin-top: 13px;
    padding-top: 12px;
  }

  .demo-code-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .demo-code-button {
    width: 100%;
    min-height: 40px;
  }

  .plan-strip {
    margin-bottom: 16px;
  }

  .plan-strip > div {
    padding: 10px 12px;
  }

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

  .order-summary > div,
  .order-summary > div:nth-child(odd),
  .order-summary > div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .order-summary > div:last-child {
    border-bottom: 0;
  }

  .privacy-rail {
    padding-left: 0;
  }

  .privacy-rail > section:first-child {
    padding-top: 0;
  }

  .query-surface {
    padding: 18px 16px;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 370px) {
  .brand-copy {
    display: none;
  }

  .environment-badge {
    justify-self: start;
  }

  .page-heading {
    gap: 10px;
  }

  .readiness {
    max-width: 104px;
    text-align: center;
    white-space: normal;
  }
}

@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;
  }
}
