/* PC Scientist - Website Discovery
   Brand palette: #122241 · #CDC9CD · #6B6CE0 · #8494A7
   Flat premium - hairline borders, no float shadows, clear steps
*/
:root {
  --wd-navy: #122241;
  --wd-ink: #122241;
  --wd-muted: #4d5f75;
  --wd-slate: #8494a7;
  --wd-lavender: #cdc9cd;
  --wd-canvas: #f3f1ee;
  --wd-surface: #f7f6f4;
  --wd-card: #ffffff;
  --wd-purple: #6b6ce0;
  --wd-purple-deep: #5657c4;
  --wd-ico-bg: #eeedf8;
  --wd-ok: #1a6b3c;
  --wd-danger: #9b1c1c;
  --wd-danger-bg: #f8ecec;
  --wd-line: rgba(18, 34, 65, 0.14);
  --wd-line-strong: rgba(18, 34, 65, 0.22);
  --wd-radius: 16px;
  --wd-radius-sm: 12px;
  --wd-touch: 52px;
  --wd-focus: #6b6ce0;
  --wd-font: Outfit, "Kumbh Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wd-display: Fraunces, Georgia, "Times New Roman", serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

.wd-page {
  margin: 0;
  font-family: var(--wd-font);
  font-size: clamp(1.0625rem, 0.35vw + 1rem, 1.175rem);
  line-height: 1.55;
  color: var(--wd-ink);
  background: var(--wd-canvas);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

.wd-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wd-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 14px 18px;
  background: var(--wd-navy);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 0 0 10px 0;
}
.wd-skip:focus {
  left: 0;
  outline: 3px solid var(--wd-purple);
  outline-offset: 3px;
}

/* Header */
.wd-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--wd-card);
  border-bottom: 1.5px solid var(--wd-line-strong);
}
.wd-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--wd-navy);
}
.wd-header__inner {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 96px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.wd-header__brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  text-decoration: none;
}
.wd-header__brand:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 3px;
  border-radius: 6px;
}
.wd-header__brand img {
  height: clamp(72px, 14vw, 96px);
  width: auto;
  max-width: min(420px, 68vw);
  object-fit: contain;
}
.wd-header__nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 4px;
  margin-left: auto;
}
.wd-header__nav a {
  color: var(--wd-navy);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.wd-header__nav a:hover,
.wd-header__nav a:focus-visible {
  background: rgba(18, 34, 65, 0.05);
  color: var(--wd-purple);
}
.wd-header__nav a:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
}
.wd-header__cta {
  background: var(--wd-purple) !important;
  color: #fff !important;
  margin-left: 4px;
}
.wd-header__cta:hover,
.wd-header__cta:focus-visible {
  background: var(--wd-purple-deep) !important;
  color: #fff !important;
}
.wd-header__end {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.wd-header__phone {
  display: none;
  color: var(--wd-navy);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.95rem;
  border: 1.5px solid var(--wd-line-strong);
  border-radius: 999px;
  padding: 10px 16px;
  min-height: 48px;
  align-items: center;
  background: #fff;
  white-space: nowrap;
}
.wd-header__phone:hover,
.wd-header__phone:focus-visible {
  border-color: var(--wd-navy);
  background: var(--wd-surface);
  text-decoration: none;
}
.wd-header__phone:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
}
.wd-header__burger {
  appearance: none;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--wd-line-strong);
  border-radius: 14px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.wd-header__burger:hover {
  border-color: var(--wd-navy);
  background: var(--wd-surface);
}
.wd-header__burger:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
}
.wd-header__burger[aria-expanded="true"] {
  background: var(--wd-navy);
  border-color: var(--wd-navy);
}
.wd-header__burger[aria-expanded="true"] .wd-header__burger-bar {
  background: #fff;
}
.wd-header__burger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 22px;
}
.wd-header__burger-bar {
  display: block;
  height: 2.5px;
  width: 100%;
  border-radius: 2px;
  background: var(--wd-navy);
}

/* Mobile drawer */
.wd-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(18, 34, 65, 0.45);
}
.wd-drawer-backdrop[hidden],
.wd-drawer[hidden] {
  display: none !important;
}
.wd-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(360px, 92vw);
  height: 100%;
  height: 100dvh;
  background: var(--wd-card);
  border-left: 1.5px solid var(--wd-line-strong);
  padding: max(16px, env(safe-area-inset-top)) 18px max(20px, env(safe-area-inset-bottom));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wd-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wd-line);
}
.wd-drawer__title {
  margin: 0;
  font-family: var(--wd-display);
  font-size: 1.35rem;
  color: var(--wd-navy);
  font-weight: 650;
}
.wd-drawer__close {
  appearance: none;
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--wd-line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--wd-navy);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wd-drawer__close:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
}
.wd-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.wd-drawer__nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.5px solid var(--wd-line);
  background: #fff;
  color: var(--wd-navy);
  text-decoration: none;
  font-weight: 650;
  font-size: 1.05rem;
}
.wd-drawer__nav a:hover,
.wd-drawer__nav a:focus-visible {
  border-color: var(--wd-navy);
  background: var(--wd-surface);
}
.wd-drawer__nav a:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
}
.wd-drawer__primary {
  background: var(--wd-purple) !important;
  color: #fff !important;
  border-color: var(--wd-purple) !important;
}
.wd-drawer__primary:hover,
.wd-drawer__primary:focus-visible {
  background: var(--wd-purple-deep) !important;
  color: #fff !important;
}
.wd-drawer__phone {
  border-color: var(--wd-navy) !important;
  box-shadow: inset 3px 0 0 var(--wd-navy);
}
body.wd-menu-open {
  overflow: hidden;
}

/* Intro panel */
.wd-intro {
  margin: 0 0 16px;
  padding: 20px 22px;
  background: var(--wd-card);
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius);
  box-shadow: inset 4px 0 0 var(--wd-navy);
}
.wd-intro__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wd-slate);
}
.wd-intro__badge::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--wd-navy);
  opacity: 0.55;
}
.wd-intro__title {
  margin: 0 0 8px;
  font-family: var(--wd-display);
  font-size: clamp(1.2rem, 1.5vw + 1rem, 1.45rem);
  color: var(--wd-navy);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.wd-intro__line {
  margin: 0 0 16px;
  color: var(--wd-muted);
  font-size: 1.02em;
  max-width: 42rem;
  line-height: 1.5;
}
.wd-intro__steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius-sm);
  overflow: hidden;
  background: var(--wd-surface);
}
.wd-intro__steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border-bottom: 1px solid var(--wd-line);
  color: var(--wd-navy);
  font-weight: 550;
  font-size: 0.96em;
  line-height: 1.45;
}
.wd-intro__steps li:last-child { border-bottom: 0; }
.wd-intro__steps strong {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.6rem;
  height: 1.6rem;
  margin-top: 1px;
  border-radius: 8px;
  background: var(--wd-ico-bg);
  color: var(--wd-purple);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(107, 108, 224, 0.18);
}

@media (min-width: 700px) {
  .wd-intro__steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .wd-intro__steps li {
    border-bottom: 0;
    border-right: 1px solid var(--wd-line);
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
  }
  .wd-intro__steps li:last-child { border-right: 0; }
}

@media (min-width: 980px) {
  .wd-header__nav { display: flex; }
  .wd-header__phone { display: inline-flex; }
  .wd-header__burger { display: none; }
  .wd-header__brand img {
    height: 92px;
    max-width: 400px;
  }
}

/* Shell */
.wd-shell {
  width: min(860px, calc(100% - 28px));
  margin: 28px auto 64px;
  padding-bottom: max(28px, env(safe-area-inset-bottom));
}

/* Progress */
.wd-progress {
  margin: 0 0 16px;
  padding: 16px 18px;
  background: var(--wd-card);
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius);
}
.wd-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}
.wd-progress__meta span:first-child {
  color: var(--wd-slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.wd-progress__meta span:last-child {
  text-align: right;
  color: var(--wd-navy);
  font-family: var(--wd-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.wd-progress__track {
  height: 10px;
  background: rgba(18, 34, 65, 0.08);
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  overflow: hidden;
}
.wd-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--wd-purple);
  border-radius: 999px;
  transition: width 200ms ease;
}

/* Card */
.wd-card {
  position: relative;
  background: var(--wd-card);
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius);
  padding: clamp(24px, 4.5vw, 42px);
  min-width: 0;
  overflow: hidden;
  box-shadow: inset 4px 0 0 var(--wd-navy);
}
.wd-card :where(h1, h2, h3, p, span, label, li, strong, small) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.wd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wd-slate);
  font-weight: 700;
}
.wd-kicker::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--wd-navy);
  opacity: 0.55;
}

.wd-title {
  margin: 0 0 14px;
  font-family: var(--wd-display);
  font-size: clamp(1.7rem, 3.6vw + 0.7rem, 2.4rem);
  line-height: 1.16;
  color: var(--wd-navy);
  font-weight: 650;
  letter-spacing: -0.02em;
}

.wd-lead {
  margin: 0 0 22px;
  color: var(--wd-muted);
  line-height: 1.6;
  font-size: 1.05em;
  max-width: 40rem;
}

.wd-note {
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--wd-surface);
  border: 1px solid var(--wd-line);
  border-left: 4px solid var(--wd-purple);
  border-radius: 10px;
  color: var(--wd-muted);
  font-size: 1em;
  line-height: 1.5;
}

/* Fields */
.wd-field {
  margin-bottom: 22px;
}
.wd-field--invalid .wd-input,
.wd-field--invalid .wd-textarea {
  border-color: var(--wd-danger);
  background: #fffafa;
}
.wd-field--invalid .wd-options {
  outline: 1px solid rgba(155, 28, 28, 0.25);
  outline-offset: 4px;
  border-radius: 12px;
}
.wd-field label.wd-label,
.wd-field .wd-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 750;
  font-size: 1.06em;
  color: var(--wd-navy);
  line-height: 1.35;
}
.wd-help {
  display: block;
  margin: -4px 0 10px;
  color: var(--wd-muted);
  font-size: 0.96em;
  line-height: 1.45;
  font-weight: 500;
}
.wd-req {
  color: var(--wd-danger);
  font-weight: 800;
}
.wd-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wd-input,
.wd-textarea,
.wd-select {
  width: 100%;
  max-width: 100%;
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius-sm);
  padding: 14px 16px;
  min-height: var(--wd-touch);
  font: inherit;
  font-size: 1.04em;
  color: var(--wd-navy);
  background: #fff;
  transition: border-color 120ms ease, background 120ms ease;
}
.wd-input::placeholder,
.wd-textarea::placeholder {
  color: var(--wd-slate);
  opacity: 1;
}
.wd-input:hover,
.wd-textarea:hover,
.wd-select:hover {
  border-color: rgba(18, 34, 65, 0.32);
}
.wd-input:focus,
.wd-textarea:focus,
.wd-select:focus {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
  border-color: var(--wd-purple);
  background: #fff;
}
.wd-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

.wd-options {
  display: grid;
  gap: 10px;
}
.wd-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  min-height: var(--wd-touch);
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius-sm);
  background: #fff;
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
  -webkit-tap-highlight-color: transparent;
}
.wd-option:hover {
  border-color: var(--wd-navy);
  background: var(--wd-surface);
}
.wd-option:focus-within {
  outline: 2px solid var(--wd-focus);
  outline-offset: 2px;
}
.wd-option.is-checked,
.wd-option:has(input:checked) {
  border-color: var(--wd-navy);
  background: rgba(107, 108, 224, 0.06);
  box-shadow: inset 3px 0 0 var(--wd-purple);
}
.wd-option input[type="checkbox"] {
  border-radius: 4px;
}
.wd-option input {
  margin-top: 4px;
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--wd-purple);
  flex-shrink: 0;
}
.wd-option span {
  line-height: 1.4;
  font-size: 1.02em;
  font-weight: 550;
  color: var(--wd-navy);
}

.wd-error {
  margin: 8px 0 0;
  padding: 10px 12px;
  color: var(--wd-danger);
  background: var(--wd-danger-bg);
  border: 1px solid rgba(155, 28, 28, 0.18);
  border-radius: 8px;
  font-size: 0.96em;
  font-weight: 700;
  line-height: 1.4;
}

/* Actions */
.wd-sticky-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin: 20px -4px -8px;
  padding: 14px 4px max(14px, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 32%);
}
.wd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.wd-btn {
  appearance: none;
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 14px 22px;
  font: inherit;
  font-size: 1.04em;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--wd-touch);
  min-width: 148px;
  letter-spacing: 0.01em;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease;
  -webkit-tap-highlight-color: transparent;
}
.wd-btn:focus-visible {
  outline: 2px solid var(--wd-focus);
  outline-offset: 3px;
}
.wd-btn--primary {
  background: var(--wd-purple);
  color: #fff;
  border-color: var(--wd-purple);
}
.wd-btn--primary:hover {
  background: var(--wd-purple-deep);
  border-color: var(--wd-purple-deep);
}
.wd-btn--secondary {
  background: #fff;
  color: var(--wd-navy);
  border-color: var(--wd-line-strong);
}
.wd-btn--secondary:hover {
  border-color: var(--wd-navy);
  background: var(--wd-surface);
}
.wd-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Review */
.wd-review-extra {
  margin-top: 20px;
  padding-top: 4px;
  border-top: 1px solid var(--wd-line);
}
.wd-review__block {
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius-sm);
  padding: 16px 18px;
  background: var(--wd-surface);
  min-width: 0;
}
.wd-review__block h3 {
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--wd-line);
  font-size: 1.12rem;
  font-family: var(--wd-display);
  color: var(--wd-navy);
}
.wd-review__row {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 1em;
}
.wd-review__row:last-child { margin-bottom: 0; }
.wd-review__row strong {
  color: var(--wd-slate);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 750;
}
.wd-review__row span {
  color: var(--wd-navy);
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.45;
}

.wd-list {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--wd-muted);
  line-height: 1.55;
}
.wd-list li { margin-bottom: 8px; }
.wd-list--welcome li::marker {
  color: var(--wd-purple);
}

.wd-thanks-panel {
  margin-top: 20px;
  padding: 18px 20px 18px 22px;
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius-sm);
  background: var(--wd-surface);
  box-shadow: inset 4px 0 0 var(--wd-purple);
}
.wd-thanks-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.2rem, 2vw + 0.8rem, 1.45rem);
  font-family: var(--wd-display);
  color: var(--wd-navy);
}

.wd-status {
  margin-top: 14px;
  font-weight: 700;
  color: var(--wd-muted);
  line-height: 1.45;
  min-height: 1.4em;
}
.wd-status--error {
  color: var(--wd-danger);
  background: var(--wd-danger-bg);
  border: 1px solid rgba(155, 28, 28, 0.16);
  padding: 12px 14px;
  border-radius: 8px;
}
.wd-status--ok { color: var(--wd-ok); }

.wd-footer {
  margin-top: 28px;
  padding: 18px 8px 8px;
  text-align: center;
  color: var(--wd-muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--wd-line);
}
.wd-footer a {
  color: var(--wd-navy);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wd-footer a:hover { color: var(--wd-purple); }

.wd-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* Welcome checklist */
.wd-welcome-points {
  display: grid;
  gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}
.wd-welcome-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--wd-line-strong);
  border-radius: var(--wd-radius-sm);
  color: var(--wd-muted);
  font-weight: 550;
}
.wd-welcome-points li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.2em;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: rgba(107, 108, 224, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.2 8.1l3.1 3.2 6.5-7' stroke='%236B6CE0' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.66rem 0.66rem;
  box-shadow: inset 0 0 0 1.5px var(--wd-purple);
}

/* Breakpoints */
@media (max-width: 420px) {
  .wd-shell {
    width: calc(100% - 16px);
    margin-top: 16px;
  }
  .wd-card {
    padding: 20px 16px 22px;
    border-radius: 14px;
  }
  .wd-header__inner {
    min-height: 88px;
    width: calc(100% - 16px);
  }
  .wd-header__brand img {
    height: 70px;
    max-width: min(300px, 68vw);
  }
  .wd-actions { flex-direction: column-reverse; }
  .wd-btn { width: 100%; min-width: 0; }
  .wd-progress__meta { flex-direction: column; gap: 4px; }
  .wd-progress__meta span:last-child { text-align: left; }
}

@media (max-width: 720px) {
  .wd-actions { flex-direction: column-reverse; }
  .wd-btn { width: 100%; }
}

@media (min-width: 1280px) {
  .wd-shell {
    width: min(900px, calc(100% - 48px));
    margin-top: 36px;
  }
}

@media (min-width: 1920px) {
  .wd-page { font-size: 1.2rem; }
}

@media (max-height: 480px) and (orientation: landscape) {
  .wd-shell { margin-top: 10px; margin-bottom: 24px; }
  .wd-sticky-actions {
    position: static;
    background: none;
    margin: 12px 0 0;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wd-progress__fill,
  .wd-option,
  .wd-btn,
  .wd-input,
  .wd-textarea {
    transition: none !important;
  }
}

@media (prefers-contrast: more) {
  .wd-option,
  .wd-input,
  .wd-textarea,
  .wd-card,
  .wd-progress {
    border-width: 2px;
    border-color: var(--wd-navy);
  }
  .wd-help,
  .wd-lead { color: var(--wd-navy); }
}

@media print {
  .wd-header,
  .wd-progress,
  .wd-actions,
  .wd-skip,
  .wd-footer,
  .wd-intro,
  .wd-drawer,
  .wd-drawer-backdrop { display: none !important; }
  .wd-page { background: #fff; }
  .wd-card {
    box-shadow: none;
    border: 1px solid #000;
  }
}
