:root {
  --desk-paper: #f4efe4;
  --desk-paper-deep: #e8dfcf;
  --desk-ink: #10233d;
  --desk-blue: #215d89;
  --desk-red: #822a35;
  --desk-gold: #c79545;
  --desk-muted: #5e6b78;
  --desk-line: rgba(16, 35, 61, 0.16);
  --desk-shadow: 0 22px 60px rgba(6, 19, 34, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(33, 93, 137, 0.2), transparent 28rem),
    #0d1b2a;
  color: var(--desk-ink);
}

.desk-main [hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

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

.desk-skip {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 16px;
  padding: 10px 16px;
  border-radius: 0 0 8px 8px;
  background: var(--desk-red);
  color: #fff;
  font-weight: 800;
  transform: translateY(-110%);
  transition: transform 0.18s ease;
}

.desk-skip:focus {
  transform: translateY(0);
}

.desk-main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.desk-hero {
  min-height: 300px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(236, 231, 216, 0.14);
  border-bottom: 4px solid var(--desk-gold);
  border-radius: 18px 18px 0 0;
  background:
    linear-gradient(90deg, rgba(6, 22, 38, 0.98), rgba(13, 35, 56, 0.86)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.03) 18px 19px);
  color: #f4efe4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 280px);
  align-items: center;
  gap: 40px;
  box-shadow: var(--desk-shadow);
  overflow: hidden;
  position: relative;
}

.desk-hero::before {
  content: "CONFIDENTIAL\A TINY OFFICIALS ONLY";
  white-space: pre;
  position: absolute;
  right: -42px;
  top: 34px;
  padding: 8px 48px;
  border: 2px solid rgba(199, 149, 69, 0.22);
  color: rgba(199, 149, 69, 0.36);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-align: center;
  transform: rotate(34deg);
}

.desk-hero-copy {
  position: relative;
  z-index: 1;
}

.desk-kicker,
.desk-label {
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desk-kicker {
  color: #d7aa5b;
  font-size: 13px;
}

.desk-label {
  color: var(--desk-red);
  font-size: 11px;
}

.desk-hero h1 {
  max-width: 820px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

.desk-lede {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(244, 239, 228, 0.78);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.55;
}

.desk-context-note {
  width: fit-content;
  margin-top: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(244, 239, 228, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(244, 239, 228, 0.84);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.desk-context-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd48b;
  box-shadow: 0 0 0 5px rgba(95, 212, 139, 0.1);
}

.desk-seal {
  justify-self: end;
  position: relative;
  z-index: 1;
}

.desk-seal img {
  width: min(100%, 250px);
  height: min(100%, 250px);
  aspect-ratio: 1;
  border: 1px solid rgba(199, 149, 69, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(199, 149, 69, 0.05);
  filter: saturate(0.8) contrast(1.08);
  object-fit: cover;
}

.desk-workspace {
  padding: clamp(22px, 4vw, 42px);
  background: var(--desk-paper);
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
  gap: 26px;
}

.desk-file-card,
.desk-progress-card {
  border: 1px solid var(--desk-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(16, 35, 61, 0.08);
}

.desk-file-card {
  min-height: 420px;
  overflow: hidden;
}

.desk-loading,
.desk-file-error {
  min-height: 420px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: var(--desk-muted);
  font-weight: 700;
}

.desk-file-error h2 {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.desk-file-error p:not(.desk-label) {
  max-width: 560px;
}

.desk-loading-mark {
  width: 38px;
  height: 38px;
  border: 4px solid rgba(33, 93, 137, 0.14);
  border-top-color: var(--desk-blue);
  border-radius: 50%;
  animation: desk-spin 0.9s linear infinite;
}

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

.desk-file-content {
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
}

.desk-file-image {
  min-height: 420px;
  background: #10233d;
  overflow: hidden;
  position: relative;
}

.desk-file-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 14, 24, 0.72));
}

.desk-file-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.desk-file-image:hover img {
  transform: scale(1.025);
}

.desk-file-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--desk-red);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desk-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(130, 42, 53, 0.9);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.32);
}

.desk-file-body {
  padding: clamp(26px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.desk-file-body h2,
.desk-panel-heading h2,
.desk-section-heading h2,
.desk-save h2,
.desk-terminal h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
}

.desk-file-body h2 {
  margin-top: 8px;
  font-size: clamp(34px, 4.5vw, 60px);
}

.desk-file-body > p:not(.desk-label) {
  margin-top: 16px;
  color: var(--desk-muted);
  font-weight: 600;
  line-height: 1.55;
}

.desk-cast-rail {
  min-height: 48px;
  margin-top: 22px;
  display: flex;
  align-items: center;
}

.desk-cast-avatar {
  width: 48px;
  height: 48px;
  margin-right: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--desk-blue);
  box-shadow: 0 4px 12px rgba(16, 35, 61, 0.18);
  overflow: hidden;
  display: grid;
  place-items: center;
  position: relative;
}

.desk-cast-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.desk-cast-avatar span {
  color: #fff;
  font-size: 20px;
}

.desk-cast-more {
  margin-left: 18px;
  color: var(--desk-muted);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desk-file-actions {
  width: 100%;
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.desk-button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.desk-button:hover {
  transform: translateY(-1px);
}

.desk-button:focus-visible,
.desk-text-action:focus-visible,
.desk-save input:focus-visible {
  outline: 3px solid rgba(199, 149, 69, 0.5);
  outline-offset: 3px;
}

.desk-button:disabled {
  opacity: 0.68;
  cursor: wait;
  transform: none;
}

.desk-button-primary {
  background: var(--desk-red);
  border-color: var(--desk-red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(130, 42, 53, 0.18);
}

.desk-button-primary:hover {
  background: #9c3441;
}

.desk-button-secondary {
  background: transparent;
  border-color: rgba(16, 35, 61, 0.26);
  color: var(--desk-ink);
}

.desk-button-secondary:hover {
  border-color: var(--desk-blue);
  background: rgba(33, 93, 137, 0.07);
}

.desk-button-full {
  width: 100%;
}

.desk-progress-card {
  padding: 28px;
}

.desk-panel-heading h2 {
  margin-top: 6px;
  font-size: 36px;
}

.desk-progress {
  margin-top: 24px;
  list-style: none;
}

.desk-progress li {
  min-height: 74px;
  padding: 4px 0 18px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  position: relative;
}

.desk-progress li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 17px;
  width: 2px;
  background: rgba(16, 35, 61, 0.12);
}

.desk-step-mark {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(16, 35, 61, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--desk-muted);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.desk-progress strong,
.desk-progress small {
  display: block;
}

.desk-progress strong {
  color: var(--desk-ink);
  font-size: 15px;
}

.desk-progress small {
  margin-top: 3px;
  color: var(--desk-muted);
  font-size: 12px;
  line-height: 1.4;
}

.desk-progress li.is-complete .desk-step-mark {
  border-color: var(--desk-blue);
  background: var(--desk-blue);
  color: #fff;
}

.desk-progress li.is-complete:not(:last-child)::after {
  background: var(--desk-blue);
}

.desk-progress li.is-current .desk-step-mark {
  border-color: var(--desk-gold);
  box-shadow: 0 0 0 5px rgba(199, 149, 69, 0.12);
  color: var(--desk-ink);
}

.desk-kit-summary {
  margin: 4px 0 16px;
  padding: 16px;
  border: 1px solid var(--desk-line);
  border-radius: 9px;
  background: var(--desk-paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.desk-kit-summary strong,
.desk-kit-summary span {
  display: block;
}

.desk-kit-summary strong {
  margin-top: 3px;
  font-size: 15px;
}

.desk-kit-price {
  color: var(--desk-red);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 900;
}

.desk-kit-tray {
  margin: -6px 0 16px;
  padding: 14px;
  border: 1px solid var(--desk-line);
  border-radius: 9px;
  background: #fffdf8;
}

.desk-kit-tray[hidden] {
  display: none !important;
}

.desk-kit-tray ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.desk-kit-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
}

.desk-kit-item img,
.desk-kit-item-image {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  background: var(--desk-paper);
  object-fit: cover;
}

.desk-kit-item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--desk-red);
  font-family: var(--font-ui);
  font-weight: 900;
}

.desk-kit-item-copy {
  min-width: 0;
}

.desk-kit-item-copy strong {
  overflow: hidden;
  display: block;
  color: var(--desk-ink);
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desk-kit-item-copy small,
.desk-kit-item-price,
#deskKitMore {
  color: var(--desk-muted);
  font-size: 11px;
  font-weight: 700;
}

.desk-kit-item-price {
  color: var(--desk-red);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

#deskKitMore {
  margin: 10px 0 0;
  text-align: center;
}

.desk-products,
.desk-support {
  padding: clamp(50px, 8vw, 96px) clamp(22px, 5vw, 64px);
  background: #fffdf8;
}

.desk-section-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  align-items: end;
  gap: 30px;
}

.desk-section-heading h2 {
  margin-top: 6px;
  font-size: clamp(46px, 7vw, 80px);
}

.desk-section-heading > p {
  color: var(--desk-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

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

.desk-product-card,
.desk-product-skeleton {
  min-height: 440px;
  border: 1px solid var(--desk-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.desk-product-skeleton {
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.72), transparent),
    #e9edf0;
  background-size: 200% 100%;
  animation: desk-shimmer 1.3s ease-in-out infinite;
}

@keyframes desk-shimmer {
  to { background-position: -200% 0; }
}

.desk-product-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.desk-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(16, 35, 61, 0.12);
}

.desk-product-image {
  aspect-ratio: 1.2 / 1;
  background: #edf2f4;
  overflow: hidden;
}

.desk-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.desk-product-card:hover .desk-product-image img {
  transform: scale(1.025);
}

.desk-product-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.desk-product-context {
  color: var(--desk-blue);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desk-product-body h3 {
  margin-top: 7px;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.08;
}

.desk-product-price {
  margin-top: 10px;
  color: var(--desk-red);
  font-size: 18px;
  font-weight: 900;
}

.desk-product-actions {
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.desk-product-actions .desk-button {
  min-height: 44px;
  padding: 0 14px;
  font-size: 11px;
}

.desk-empty-state {
  padding: clamp(34px, 5vw, 60px);
  border: 2px dashed rgba(33, 93, 137, 0.24);
  border-radius: 12px;
  background: rgba(33, 93, 137, 0.04);
  text-align: center;
}

.desk-empty-state h3 {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
}

.desk-empty-state p:not(.desk-label) {
  max-width: 580px;
  margin: 8px auto 22px;
  color: var(--desk-muted);
}

.desk-save {
  padding: clamp(44px, 7vw, 78px) clamp(22px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(13, 27, 42, 0.97), rgba(13, 35, 56, 0.95)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255,255,255,0.03) 31px 32px);
  color: #f4efe4;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.desk-save h2 {
  margin-top: 8px;
  font-size: clamp(42px, 6vw, 70px);
}

.desk-save-value > p:not(.desk-kicker) {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(244, 239, 228, 0.72);
  font-weight: 600;
  line-height: 1.55;
}

.desk-delivery-steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.desk-delivery-steps span {
  padding: 13px;
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: rgba(244, 239, 228, 0.72);
  font-size: 12px;
}

.desk-delivery-steps strong {
  display: block;
  margin-bottom: 3px;
  color: #f4efe4;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desk-save-form {
  padding: 26px;
  border: 1px solid rgba(244, 239, 228, 0.16);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.desk-save-form label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desk-form-row {
  display: grid;
  gap: 10px;
}

.desk-save input {
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #fff;
  color: var(--desk-ink);
  font-weight: 700;
}

.desk-save input:focus {
  border-color: var(--desk-gold);
  outline: none;
}

.desk-save-form .desk-button {
  min-height: 50px;
}

.desk-form-note {
  margin-top: 12px;
  color: rgba(244, 239, 228, 0.64);
  font-size: 12px;
  line-height: 1.45;
}

.desk-form-note.is-success {
  color: #8ee4ad;
}

.desk-form-note.is-error {
  color: #ffb0b8;
}

.desk-section-heading-centered {
  display: block;
  text-align: center;
}

.desk-section-heading-centered > p {
  margin: 12px auto 0;
}

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

.desk-support-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--desk-line);
  border-radius: 12px;
  background: var(--desk-paper);
  display: flex;
  flex-direction: column;
}

.desk-support-card.is-featured {
  border: 2px solid var(--desk-gold);
  box-shadow: 0 14px 28px rgba(199, 149, 69, 0.14);
}

.desk-support-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--desk-ink);
  color: #f4efe4;
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 900;
}

.desk-support-card.is-featured .desk-support-icon {
  background: var(--desk-gold);
  color: var(--desk-ink);
}

.desk-support-price {
  margin-top: 18px;
  color: var(--desk-red);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 900;
}

.desk-support-card h3 {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.desk-support-card > p:not(.desk-support-price) {
  margin-top: 10px;
  color: var(--desk-muted);
  font-size: 14px;
  line-height: 1.5;
}

.desk-text-action {
  min-height: 44px;
  margin-top: auto;
  padding: 20px 0 0;
  border: 0;
  background: transparent;
  color: var(--desk-blue);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: flex-end;
}

.desk-terminal {
  padding: clamp(42px, 6vw, 70px) clamp(22px, 5vw, 64px);
  border-radius: 0 0 18px 18px;
  background: var(--desk-paper-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--desk-shadow);
}

.desk-terminal h2 {
  margin-top: 6px;
  font-size: clamp(38px, 5vw, 60px);
}

.desk-terminal p:not(.desk-kicker) {
  margin-top: 10px;
  color: var(--desk-muted);
  font-weight: 600;
}

.desk-terminal .desk-button {
  flex: 0 0 auto;
}

.desk-mobile-action {
  display: none;
}

.desk-footer {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  color: rgba(236, 231, 216, 0.58);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.desk-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.desk-footer a:hover {
  color: #fff;
}

@media (max-width: 1040px) {
  .desk-hero {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .desk-workspace {
    grid-template-columns: 1fr;
  }

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

  .desk-progress li {
    min-height: auto;
    grid-template-columns: 36px 1fr;
  }

  .desk-progress li::after {
    display: none;
  }

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

  .desk-product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .desk-main {
    width: 100%;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .desk-hero,
  .desk-terminal {
    border-radius: 0;
  }

  .desk-hero {
    min-height: auto;
    padding: 46px 20px 42px;
    grid-template-columns: 1fr;
  }

  .desk-hero::before,
  .desk-seal {
    display: none;
  }

  .desk-hero h1 {
    font-size: clamp(64px, 21vw, 96px);
  }

  .desk-lede {
    font-size: 16px;
  }

  .desk-context-note {
    align-items: flex-start;
    border-radius: 9px;
  }

  .desk-context-dot {
    margin-top: 5px;
  }

  .desk-workspace {
    padding: 18px;
  }

  .desk-file-content {
    grid-template-columns: 1fr;
  }

  .desk-file-image {
    min-height: 250px;
    aspect-ratio: 16 / 9;
  }

  .desk-file-body {
    padding: 26px 20px;
  }

  .desk-progress-card {
    padding: 22px 18px;
  }

  .desk-progress {
    grid-template-columns: 1fr;
  }

  .desk-progress li {
    grid-template-columns: 38px 1fr;
  }

  .desk-progress li:not(:last-child)::after {
    display: block;
  }

  .desk-products,
  .desk-support {
    padding: 58px 18px;
  }

  .desk-section-heading {
    display: block;
  }

  .desk-section-heading > p {
    margin-top: 14px;
  }

  .desk-product-grid,
  .desk-support-grid {
    grid-template-columns: 1fr;
  }

  .desk-product-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .desk-product-card,
  .desk-product-skeleton {
    min-height: 390px;
  }

  .desk-save {
    padding: 54px 18px;
    grid-template-columns: 1fr;
  }

  .desk-delivery-steps {
    grid-template-columns: 1fr;
  }

  .desk-save-form {
    padding: 20px;
  }

  .desk-terminal {
    align-items: flex-start;
    flex-direction: column;
  }

  .desk-terminal .desk-button {
    width: 100%;
  }

  .desk-support-card {
    min-height: 260px;
  }

  .desk-mobile-action {
    position: fixed;
    z-index: 1300;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 70px;
    padding: 10px 12px max(10px, env(safe-area-inset-bottom));
    border-top: 2px solid var(--desk-gold);
    background: rgba(13, 27, 42, 0.98);
    color: #f4efe4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  }

  .desk-mobile-action .desk-label {
    color: #d7aa5b;
  }

  .desk-mobile-action strong {
    display: block;
    max-width: 48vw;
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.15;
  }

  .desk-mobile-action .desk-button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 11px;
  }

  .desk-footer {
    width: 100%;
    padding: 30px 18px 110px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .desk-hero h1 {
    font-size: 66px;
  }

  .desk-file-actions,
  .desk-product-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .desk-file-actions .desk-button,
  .desk-product-actions .desk-button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
