:root {
  --navy: #173d70;
  --navy-dark: #102d54;
  --gold: #c8ae63;
  --gold-light: #f4ebcf;
  --ink: #14243d;
  --muted: #657187;
  --blue: #155eef;
  --line: #dbe3ee;
  --green: #027a48;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: #f7f9fc;
  color: var(--ink);
  font:
    16px/1.5 Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
  min-height: 100vh;
}
body.home-open {
  height: 100dvh;
  overflow: hidden;
}
.shell {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 28px clamp(24px, 5vw, 80px) 42px;
}
body.home-open .shell {
  height: 100dvh;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.narrow {
  width: min(540px, calc(100% - 32px));
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: var(--muted);
}
body.home-open header {
  flex: none;
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  width: auto;
  height: 68px;
  object-fit: contain;
}
.card {
  background: #fff;
  border: 1px solid rgba(219, 227, 238, 0.9);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 16px 40px rgba(25, 40, 70, 0.08);
}
.hero {
  border: 0;
  box-shadow: none;
  border-radius: 28px;
  min-height: calc(100vh - 138px);
  padding: clamp(38px, 7vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 50px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      circle at 84% 30%,
      #f5ebd0 0,
      rgba(245, 235, 208, 0.7) 17%,
      transparent 42%
    ),
    linear-gradient(135deg, #fff 15%, #f5f8fc 100%);
}
body.home-open .hero {
  flex: 1;
  min-height: 0;
  height: auto;
}
.home-copy {
  max-width: 650px;
  z-index: 1;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  margin: 0 0 15px;
}
.hero h1,
.upload-intro h1 {
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.03;
  margin: 0 0 20px;
  letter-spacing: -0.055em;
  max-width: 750px;
}
.hero h1 em,
.upload-intro h1 em {
  font-style: normal;
  color: var(--navy);
}
.hero-text {
  font-size: clamp(17px, 1.7vw, 21px);
  max-width: 520px;
  color: var(--muted);
  margin: 0;
}
.actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}
button,
.link-button {
  font: inherit;
  font-weight: 750;
  border-radius: 12px;
  border: 0;
  padding: 13px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.fun-button {
  padding: 16px 21px;
}
.fun-button:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: 0 14px 24px rgba(23, 61, 112, 0.2);
}
.fun-button:active {
  transform: translateY(0) scale(0.98);
  box-shadow: none;
}
.button-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 16px;
}
.primary {
  background: var(--navy);
  color: #fff;
}
.primary:hover {
  background: var(--navy-dark);
}
.primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.secondary {
  background: #eef3f9;
  color: var(--navy);
}
.secondary:hover {
  background: #e0eaf5;
}
.microcopy {
  font-size: 13px;
  color: #7f8ca0;
  margin: 20px 0 0;
}
.home-art {
  height: min(48vw, 520px);
  min-height: 380px;
  position: relative;
  display: grid;
  place-items: center;
}
.art-logo {
  height: 300px;
  width: 300px;
  padding: 31px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--navy);
  box-shadow: 0 22px 42px rgba(20, 36, 61, 0.12);
  overflow: hidden;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
}
.art-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(200, 174, 99, 0.4);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.orbit-one {
  width: 370px;
  height: 370px;
}
.orbit-two {
  width: 500px;
  height: 500px;
  border-style: dashed;
  animation-duration: 26s;
  animation-direction: reverse;
}
.floating-paper {
  position: absolute;
  z-index: 3;
  border-radius: 13px;
  padding: 13px 15px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 13px 22px rgba(23, 61, 112, 0.24);
  animation: float 4.5s ease-in-out infinite;
}
.paper-one {
  top: 13%;
  right: 15%;
  transform: rotate(11deg);
}
.paper-two {
  bottom: 13%;
  left: 11%;
  background: var(--gold);
  color: #fff;
  animation-delay: -2s;
  transform: rotate(-11deg);
}
.paper-two {
  font-size: 11px;
  padding-inline: 12px;
}
@keyframes float {
  50% {
    transform: translateY(-13px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hidden {
  display: none !important;
}
.back {
  padding: 10px 14px 10px 10px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #dce5f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  box-shadow: 0 5px 14px rgba(23, 61, 112, 0.07);
  margin-bottom: 30px;
}
.back:hover {
  transform: translateX(-3px) translateY(-1px);
  color: var(--navy-dark);
  border-color: #c8ae63;
  box-shadow: 0 9px 18px rgba(23, 61, 112, 0.12);
}
.back-arrow {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--gold-light);
  color: #806620;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease;
}
.back:hover .back-arrow {
  transform: translateX(-2px);
  background: var(--gold);
  color: #fff;
}
.upload-layout {
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: 1fr minmax(390px, 520px);
  gap: clamp(45px, 9vw, 150px);
  align-items: center;
  max-width: 1230px;
  margin: auto;
}
.upload-intro {
  align-self: center;
}
.upload-intro > p:not(.eyebrow) {
  font-size: 18px;
  color: var(--muted);
  max-width: 490px;
}
.upload-tip {
  display: flex;
  align-items: flex-start;
  max-width: 470px;
  margin-top: 34px;
  padding: 18px;
  border-radius: 16px;
  background: var(--gold-light);
  color: #5e522c;
}
.upload-tip p {
  margin: 0;
  font-size: 13px;
}
.upload-panel {
  padding: clamp(25px, 3.5vw, 44px);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(23, 61, 112, 0.13);
  border: 1px solid #e5eaf1;
}
.upload-panel h2 {
  color: var(--navy);
  font-size: 25px;
  margin: 0;
}
form {
  display: grid;
  gap: 17px;
  margin-top: 26px;
}
label {
  font-size: 14px;
  font-weight: 700;
  display: grid;
  gap: 7px;
}
.field-help {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.delivery-highlight {
  position: relative;
  margin: -3px 0 2px;
  padding: 11px 12px 11px 15px;
  border: 1px solid #f0dfaa;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  background: #fffaf0;
  color: #645634;
  font-size: 12px;
  line-height: 1.45;
}
.delivery-highlight strong {
  color: var(--navy);
}
.delivery-highlight b {
  color: var(--navy-dark);
}
input {
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  width: 100%;
  transition:
    border 0.2s,
    box-shadow 0.2s;
}
input:focus {
  outline: 0;
  box-shadow: 0 0 0 4px #e6edf7;
  border-color: var(--navy);
}
.file {
  min-height: 140px;
  border: 2px dashed #b9c8dc;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  cursor: pointer;
  transition: 0.2s;
}
.file:hover {
  border-color: var(--gold);
  background: #fffdf8;
  transform: translateY(-2px);
}
.file input {
  display: none;
}
.file-symbol {
  font-size: 27px;
  line-height: 1;
  color: var(--gold);
}
.file small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.full {
  width: 100%;
}
.muted {
  color: var(--muted);
  font-size: 14px;
}
.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.section-heading h2 {
  margin-top: 0;
  color: var(--navy);
}
.filters {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.filter-actions {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  gap: 9px;
}
.table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.jobs-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
  font-size: 13px;
}
.jobs-table th {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: #f8fafc;
  text-align: left;
}
.jobs-table th,
.jobs-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.jobs-table tr:last-child td {
  border-bottom: 0;
}
.document-cell {
  max-width: 240px;
  cursor: help;
}
.document-cell strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jobs-table code {
  font:
    600 12px ui-monospace,
    SFMono-Regular,
    monospace;
  color: #344054;
}
.small {
  padding: 8px 12px;
  font-size: 13px;
}
.status {
  display: inline-block;
  white-space: nowrap;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 750;
}
.status-awaiting_release {
  background: #fff4e5;
  color: #9a6700;
}
.status-released {
  background: #eff4ff;
  color: #1849a9;
}
.status-completed {
  background: #f2f4f7;
  color: #475467;
}
.summary,
.receipt {
  background: #f8fafc;
  border-radius: 12px;
  padding: 18px;
  margin: 22px 0;
}
.summary p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
.receipt {
  display: grid;
  gap: 5px;
  text-align: left;
}
.receipt span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}
.receipt strong {
  font-size: 22px;
  letter-spacing: 0.04em;
}
.success h1 {
  color: var(--green);
}
.payment-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 82% 23%, rgba(244, 235, 207, 0.85), transparent 27%),
    #f7f9fc;
}
.payment-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 100dvh;
  margin: 0 auto;
  padding: 20px 0;
}
.payment-back {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
  display: inline-flex;
  transition: transform .2s ease, color .2s ease;
}
.payment-back:hover { transform: translateX(-4px); color: var(--gold); }
.payment-layout {
  min-height: calc(100dvh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
  align-items: center;
  gap: clamp(60px, 12vw, 180px);
}
.payment-intro { max-width: 600px; }
.payment-intro h1 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.payment-intro h1 em { color: var(--navy); font-style: normal; }
.payment-lead { color: var(--muted); font-size: 19px; max-width: 510px; margin: 0; }
.payment-info {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  color: var(--muted);
}
.payment-info p { margin: 0; font-size: 14px; }
.payment-info strong { color: var(--ink); }
.info-icon, .payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: none;
  font-weight: 850;
}
.info-icon { background: var(--gold-light); color: #9b7d2e; font-size: 24px; }
.payment-card {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(20, 36, 61, .11);
}
.payment-card-head { display: flex; gap: 13px; align-items: center; margin-bottom: 16px; }
.payment-icon { background: var(--navy); color: #fff; font-size: 21px; }
.payment-card-head div { display: grid; gap: 1px; }
.payment-card-head span { color: var(--muted); font-size: 13px; }
.payment-card-head strong { color: var(--ink); font-size: 18px; }
.payment-details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; margin-bottom: 14px; }
.payment-document { display: grid; gap: 5px; padding-bottom: 19px; }
.payment-document span, .payment-row span, .payment-total span { color: var(--muted); font-size: 13px; }
.payment-document strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--ink); }
.payment-document small { color: var(--muted); }
.payment-row, .payment-total { display: flex; justify-content: space-between; align-items: center; }
.payment-row { padding: 11px 0; border-top: 1px solid #edf1f6; }
.copies-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 11px 0 5px; border-top: 1px solid #edf1f6; }
.copies-row span { display: block; color: var(--ink); font-size: 14px; font-weight: 750; }
.copies-row small { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.35; max-width: 215px; }
.copies-control { display: flex; align-items: center; border: 1px solid #ccd8e7; border-radius: 10px; overflow: hidden; background: #fff; }
.copies-control input { width: 46px; min-width: 46px; border: 0; border-radius: 0; padding: 8px 3px; text-align: center; font-weight: 800; color: var(--navy); box-shadow: none; }
.copies-control input::-webkit-inner-spin-button, .copies-control input::-webkit-outer-spin-button { appearance: none; margin: 0; }
.copy-adjust { display: grid; place-items: center; width: 34px; height: 35px; padding: 0; border-radius: 0; background: #f3f6fa; color: var(--navy); font-size: 19px; line-height: 1; }
.copy-adjust:hover { background: var(--gold-light); color: var(--navy-dark); }
.copies-output { margin: 0 0 8px; color: var(--gold); font-size: 12px; font-weight: 800; text-align: right; }
.print-options { margin: 0; padding: 9px 0 5px; border: 0; border-top: 1px solid #edf1f6; }
.print-options legend { padding: 0; color: var(--ink); font-size: 14px; font-weight: 750; }
.print-option { display: flex; grid-template-columns: none; align-items: flex-start; gap: 10px; margin-top: 7px; color: var(--ink); font-size: 13px; cursor: pointer; }
.print-option input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--navy); }
.print-option span { display: grid; gap: 1px; }
.print-option b { font-size: 13px; }
.print-option small { color: var(--muted); font-size: 11px; font-weight: 500; }
.print-option.unavailable { cursor: not-allowed; opacity: .45; }
.duplex-note { margin: 2px 0 7px; padding: 7px 9px; border-radius: 8px; background: #f7f9fc; color: var(--muted); font-size: 11px; line-height: 1.3; }
.payment-total { padding-top: 10px; }
.payment-total strong { color: var(--navy); font-size: 27px; letter-spacing: -.03em; }
.payment-expiry { color: var(--muted); font-size: 12px; margin: 10px 0 0; }
.payment-card .full { width: 100%; margin-top: 14px; }
.payment-note { color: #9a6700; background: #fff8e9; padding: 10px 12px; border-radius: 9px; font-size: 12px; margin: 14px 0 0; }
.payment-security { color: var(--muted); text-align: center; font-size: 12px; margin: 10px 0 0; }
@media (min-width: 901px) {
  body.payment-page { height: 100dvh; overflow: hidden; }
  .payment-shell { position: relative; height: 100dvh; min-height: 0; }
  .payment-back { position: absolute; top: 20px; left: 0; z-index: 1; }
  .payment-layout { min-height: 0; height: 100%; }
}
.success-page {
  min-height: 100dvh;
  background:
    radial-gradient(circle at 18% 76%, rgba(236, 253, 243, .9), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(244, 235, 207, .75), transparent 26%),
    #f7f9fc;
}
.success-shell { width: min(1240px, calc(100% - 48px)); min-height: 100dvh; margin: 0 auto; }
.success-layout {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 480px);
  align-items: center;
  gap: clamp(60px, 12vw, 180px);
}
.success-intro { max-width: 620px; }
.success-check {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 850;
  box-shadow: 0 13px 25px rgba(2, 122, 72, .24);
  margin-bottom: 28px;
}
.success-intro h1 { color: var(--ink); font-size: clamp(42px, 5vw, 68px); line-height: 1.04; letter-spacing: -.055em; margin: 0 0 20px; }
.success-intro h1 em { color: var(--green); font-style: normal; }
.success-lead { color: var(--muted); font-size: 19px; margin: 0; max-width: 530px; }
.notification-message { color: var(--green); font-size: 14px; font-weight: 700; margin: 14px 0 -6px; }
.success-steps { display: grid; grid-template-columns: 29px 1fr; align-items: center; gap: 11px 13px; margin-top: 33px; }
.success-steps span { width: 29px; height: 29px; border-radius: 50%; display: grid; place-items: center; background: #eaf7ef; color: var(--green); font-size: 12px; font-weight: 850; }
.success-steps p { margin: 0; color: var(--muted); font-size: 14px; }
.pickup-card { background: #fff; border: 1px solid #dbe3ee; border-radius: 24px; padding: 30px; box-shadow: 0 20px 50px rgba(20, 36, 61, .11); }
.pickup-card-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--ink); font-weight: 800; margin-bottom: 22px; }
.ready-status { background: #eaf7ef; color: var(--green); border-radius: 999px; padding: 5px 9px; font-size: 11px; white-space: nowrap; }
.pickup-code { position: relative; background: #f8fafc; border: 1px solid #e7edf4; border-radius: 14px; padding: 17px 15px; display: grid; gap: 5px; margin-top: 12px; }
.pickup-code > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.pickup-code strong { color: var(--navy); font: 800 20px/1.25 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: -.025em; padding-right: 78px; overflow-wrap: anywhere; }
.password-code { background: #fffaf0; border-color: #f3e6c1; }
.password-code strong { color: #876c27; font-size: 26px; letter-spacing: .08em; }
.copy-code { position: absolute; right: 11px; bottom: 13px; padding: 7px 9px; border-radius: 8px; background: #eaf0f7; color: var(--navy); font-size: 11px; }
.copy-code:hover { background: #dce8f5; transform: translateY(-1px); }
.pickup-expiry { color: var(--muted); font-size: 12px; margin: 19px 0; line-height: 1.55; }
.pickup-expiry strong { color: var(--ink); }
.finish-button {
  width: 100%;
  min-height: 54px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px 8px 19px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(23, 61, 112, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.finish-button b {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 20px;
  line-height: 1;
}
.finish-button:hover {
  transform: translateY(-3px);
  background: var(--navy-dark);
  box-shadow: 0 15px 26px rgba(23, 61, 112, .25);
}
.finish-button:hover b { transform: translateX(2px); }
#toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: #17233b;
  color: #fff;
  border-radius: 9px;
  padding: 12px 16px;
  display: none;
  max-width: 90%;
  z-index: 9;
}
.manager-open {
  background: #fff;
}
.manager-open .shell {
  padding: 32px 48px;
}
.manager-open #release {
  min-height: calc(100vh - 112px);
  padding: 28px 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.manager-open header {
  padding: 0;
  margin-bottom: 22px;
}
@media (max-width: 800px) {
  .payment-shell { width: min(100% - 36px, 600px); }
  .payment-layout { min-height: auto; padding: 42px 0; grid-template-columns: 1fr; gap: 38px; }
  .payment-intro h1 { font-size: 46px; }
  .success-shell { width: min(100% - 36px, 600px); }
  .success-layout { min-height: auto; padding: 54px 0; grid-template-columns: 1fr; gap: 40px; }
  .success-intro h1 { font-size: 46px; }
  .shell {
    padding: 24px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 30px;
  }
  .home-art {
    display: none;
  }
  .upload-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .upload-intro h1 {
    font-size: 48px;
  }
  .upload-panel {
    max-width: 600px;
  }
  .manager-open .shell {
    padding: 24px 16px;
  }
}
@media (max-width: 550px) {
  header > p {
    display: none;
  }
  .shell {
    padding: 18px;
  }
  .hero {
    min-height: calc(100vh - 90px);
    padding: 45px 24px;
  }
  .hero h1,
  .upload-intro h1 {
    font-size: 40px;
  }
  .actions {
    display: grid;
  }
  .fun-button {
    width: 100%;
  }
  .filters {
    grid-template-columns: 1fr;
  }
  .filter-actions {
    justify-content: flex-start;
  }
  .card {
    padding: 25px;
  }
  .upload-panel {
    padding: 24px;
  }
  .manager-open .shell {
    padding: 18px 12px;
  }
  .manager-open #release {
    min-height: calc(100vh - 80px);
  }
}
@media (max-height: 720px) and (min-width: 801px) {
  body.home-open .shell {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  body.home-open header {
    margin-bottom: 14px;
  }
  .hero {
    padding: clamp(24px, 4vw, 52px);
  }
  .hero h1 {
    font-size: clamp(38px, 4.5vw, 58px);
  }
  .actions {
    margin-top: 22px;
  }
  .microcopy {
    margin-top: 12px;
  }
  .home-art {
    min-height: 310px;
    height: min(42vw, 410px);
  }
  .art-logo {
    height: 190px;
    width: 190px;
    padding: 20px;
  }
  .art-logo img {
    width: 100%;
    height: 100%;
  }
  .orbit-one {
    width: 300px;
    height: 300px;
  }
  .orbit-two {
    width: 390px;
    height: 390px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
