:root {
  color-scheme: dark;
  --bg: #080b12;
  --bg-soft: #0c1120;
  --panel: rgba(17, 23, 39, 0.82);
  --panel-strong: #111827;
  --field: rgba(21, 29, 49, 0.9);
  --line: rgba(160, 177, 218, 0.16);
  --line-strong: rgba(147, 169, 223, 0.28);
  --text: #f7f9ff;
  --muted: #9da9c3;
  --muted-2: #707c98;
  --blue: #4b7dff;
  --blue-2: #2f65f5;
  --violet: #8a6cff;
  --teal: #42d6c2;
  --green: #49dfa1;
  --warning: #ffc866;
  --danger: #ff7b89;
  --paper: #f7f5ef;
  --ink: #1b2230;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --max-width: 1560px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 18%, rgba(66, 99, 255, 0.12), transparent 30%),
    radial-gradient(circle at 20% 68%, rgba(112, 73, 255, 0.08), transparent 34%),
    linear-gradient(150deg, #070a11, #09101f 58%, #080b12);
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  pointer-events: none;
}

.ambient-one {
  top: 8rem;
  right: -10rem;
  background: var(--blue);
}

.ambient-two {
  bottom: -12rem;
  left: -8rem;
  background: var(--violet);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 17, 0.78);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 20px;
  font-weight: 680;
  letter-spacing: -0.03em;
}

.brand strong {
  color: #8ca8ff;
}

.brand-mark {
  position: relative;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(125, 155, 255, 0.55);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(75, 125, 255, 0.28), rgba(138, 108, 255, 0.08));
  box-shadow: inset 0 0 0 4px rgba(75, 125, 255, 0.07);
}

.brand-mark::before,
.brand-mark span {
  content: "";
  position: absolute;
  background: #a9bbff;
}

.brand-mark::before {
  left: 6px;
  top: 6px;
  width: 9px;
  height: 12px;
  border-radius: 2px;
  opacity: 0.94;
}

.brand-mark span {
  right: 5px;
  bottom: 5px;
  width: 8px;
  height: 10px;
  border-radius: 2px;
  opacity: 0.54;
}

.nav-links {
  display: flex;
  align-items: stretch;
  height: 72px;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--violet), var(--blue));
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links .is-active {
  color: var(--text);
}

.nav-links .is-active::after {
  transform: scaleX(1);
}

.privacy-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c0c8da;
  font-size: 13px;
}

.privacy-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 15px rgba(66, 214, 194, 0.72);
}

main,
footer {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 54px 2px 32px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: #96a9d3;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 12px;
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 710;
}

.hero-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 290px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #cad2e3;
  background: rgba(13, 19, 33, 0.54);
}

.hero-note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(66, 214, 194, 0.3);
  border-radius: 10px;
  color: var(--teal);
  background: rgba(66, 214, 194, 0.08);
}

.hero-note div {
  display: grid;
  gap: 3px;
}

.hero-note strong {
  font-size: 13px;
}

.hero-note span:last-child {
  color: var(--muted-2);
  font-size: 11px;
}

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

.control-panel,
.preview-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, rgba(17, 23, 39, 0.93), rgba(11, 16, 29, 0.84));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.control-panel {
  display: grid;
  gap: 17px;
  padding: 22px;
}

.panel-heading,
.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-heading > div,
.preview-toolbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.panel-heading h2,
.preview-toolbar h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.section-number {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 25px;
  padding: 0 7px;
  border: 1px solid rgba(121, 147, 222, 0.25);
  border-radius: 7px;
  color: #9eb3ed;
  background: rgba(79, 111, 211, 0.1);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.icon-button:hover {
  border-color: var(--line-strong);
  color: var(--text);
  transform: rotate(-25deg);
}

.upload-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 146px;
  padding: 22px;
  overflow: hidden;
  border: 1px dashed rgba(122, 153, 238, 0.47);
  border-radius: var(--radius-sm);
  text-align: center;
  background:
    linear-gradient(150deg, rgba(70, 102, 194, 0.08), rgba(68, 199, 189, 0.02)),
    rgba(11, 17, 30, 0.48);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.upload-zone:hover,
.upload-zone.is-dragging {
  border-color: var(--blue);
  background: rgba(66, 100, 210, 0.12);
  transform: translateY(-1px);
}

.upload-zone.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(66, 214, 194, 0.34);
  border-radius: inherit;
  pointer-events: none;
}

.upload-zone input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
  border: 1px solid rgba(126, 153, 231, 0.35);
  border-radius: 12px;
  color: #8ba8ff;
  background: rgba(72, 105, 216, 0.12);
  font-size: 25px;
  line-height: 1;
}

.upload-zone strong {
  font-size: 14px;
}

.upload-zone > span:last-child {
  color: var(--muted-2);
  font-size: 11px;
}

.mode-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 11, 20, 0.58);
}

.pdf-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(138, 108, 255, 0.24);
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(138, 108, 255, 0.09), rgba(66, 214, 194, 0.04));
}

.pdf-status {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--teal);
  font-size: 11px;
  white-space: nowrap;
}

.mode-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.mode-button.is-active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(84, 116, 255, 0.28), rgba(124, 86, 255, 0.18));
  box-shadow: inset 0 0 0 1px rgba(133, 157, 255, 0.34);
}

.form-section {
  display: grid;
  gap: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #cbd3e4;
  font-size: 12px;
}

.input-shell,
.select-shell {
  display: flex;
  align-items: center;
  min-height: 44px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--field);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-shell:focus-within,
.select-shell:focus-within {
  border-color: rgba(92, 132, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(75, 125, 255, 0.12);
}

.input-shell input,
.select-shell select {
  min-width: 0;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.input-shell > span {
  padding-right: 12px;
  color: var(--muted-2);
  font-size: 11px;
}

.select-shell {
  position: relative;
}

.select-shell::after {
  content: "⌄";
  position: absolute;
  right: 12px;
  color: var(--muted);
  pointer-events: none;
}

.select-shell select {
  padding-right: 30px;
  appearance: none;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.check-row input {
  position: absolute;
  opacity: 0;
}

.check-visual {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: transparent;
  background: rgba(12, 18, 31, 0.72);
}

.check-row input:checked + .check-visual {
  border-color: var(--blue);
  color: white;
  background: var(--blue-2);
}

.field-help {
  margin: -2px 0 0;
  color: var(--muted-2);
  font-size: 11px;
}

.secondary-fields {
  padding-top: 2px;
}

.quality-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(9, 14, 25, 0.48);
}

.quality-head,
.quality-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quality-head {
  font-size: 12px;
}

.quality-head strong {
  color: var(--muted-2);
  font-size: 11px;
}

.quality-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(122, 141, 183, 0.15);
}

.quality-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--muted-2);
  transition: width 300ms ease, background 300ms ease;
}

.quality-card.is-excellent .quality-track span,
.quality-card.is-high .quality-track span {
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.quality-card.is-good .quality-track span {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.quality-card.is-medium .quality-track span {
  background: var(--warning);
}

.quality-card.is-low .quality-track span {
  background: var(--danger);
}

.quality-card.is-excellent .quality-head strong,
.quality-card.is-high .quality-head strong {
  color: var(--green);
}

.quality-card.is-good .quality-head strong {
  color: var(--teal);
}

.quality-card.is-medium .quality-head strong {
  color: var(--warning);
}

.quality-card.is-low .quality-head strong {
  color: var(--danger);
}

.quality-meta {
  color: var(--muted-2);
  font-size: 10px;
}

.action-row {
  display: grid;
  gap: 9px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  border-radius: 11px;
  font-weight: 680;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.primary-button {
  border: 1px solid rgba(143, 166, 255, 0.36);
  color: white;
  background: linear-gradient(105deg, #416ff2, #6c5af7 63%, #7161f3);
  box-shadow: 0 14px 34px rgba(66, 88, 228, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  color: #cad3e8;
  background: rgba(18, 26, 45, 0.72);
}

.primary-button:hover:not(:disabled),
.secondary-button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.43;
}

.status-message {
  min-height: 1.35em;
  margin: -2px 0 0;
  color: var(--muted-2);
  font-size: 10px;
  text-align: center;
}

.status-message.is-error {
  color: var(--danger);
}

.preview-panel {
  min-height: 760px;
  overflow: hidden;
}

.preview-toolbar {
  min-height: 74px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.preview-stats {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-stats span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(12, 18, 31, 0.56);
  font-size: 11px;
}

.preview-stage {
  position: relative;
  display: grid;
  min-height: 685px;
  padding: 24px;
  overflow: auto;
  background:
    linear-gradient(rgba(138, 159, 211, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138, 159, 211, 0.025) 1px, transparent 1px),
    rgba(6, 10, 18, 0.38);
  background-size: 28px 28px;
}

.empty-preview {
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  max-width: 330px;
  color: var(--muted-2);
  text-align: center;
}

.empty-preview strong {
  margin-top: 24px;
  color: #cbd3e4;
  font-size: 15px;
}

.empty-preview > span {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
}

.paper-stack {
  position: relative;
  width: 110px;
  height: 86px;
}

.paper-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(137, 157, 210, 0.25);
  border-radius: 7px;
  background: rgba(228, 233, 248, 0.06);
}

.paper-stack span:nth-child(1) {
  transform: rotate(-9deg) translate(-9px, 3px);
}

.paper-stack span:nth-child(2) {
  transform: rotate(7deg) translate(9px, 2px);
}

.paper-stack span:nth-child(3) {
  display: grid;
  place-items: center;
  background: rgba(228, 233, 248, 0.085);
}

.paper-stack span:nth-child(3)::after {
  content: "+";
  color: #8293c4;
  font-size: 30px;
  font-weight: 300;
}

.sheet-grid {
  display: none;
  grid-template-columns: repeat(var(--preview-columns, 3), minmax(130px, 1fr));
  gap: 7px;
  align-content: start;
  min-width: min(100%, 520px);
}

.sheet-grid.has-pages {
  display: grid;
  animation: reveal 260ms ease both;
}

.preview-sheet,
.print-sheet {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.preview-sheet {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.22);
}

.sheet-art {
  position: absolute;
  overflow: hidden;
  background: #e6e8ee;
}

.sheet-art img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  pointer-events: none;
}

.glue-strip,
.cut-label,
.page-code,
.page-badge,
.cut-line {
  position: absolute;
  z-index: 3;
}

.glue-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  border: 1px dashed rgba(15, 24, 38, 0.68);
  color: #273044;
  background: rgba(235, 232, 222, 0.8);
  font-weight: 750;
  letter-spacing: 0.03em;
}

.glue-right {
  writing-mode: vertical-rl;
}

.cut-line {
  color: #121b2b;
  border-color: currentColor;
}

.cut-left {
  border-left-style: dashed;
}

.cut-top {
  border-top-style: dashed;
}

.cut-label {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #1d283a;
  font-weight: 720;
  white-space: nowrap;
}

.cut-label-left {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.page-code {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374155;
  font-weight: 680;
  white-space: nowrap;
}

.page-badge {
  display: grid;
  place-items: center;
  border: 1px solid rgba(58, 91, 164, 0.24);
  border-radius: 4px;
  color: #315bb4;
  background: rgba(245, 248, 255, 0.9);
  font-weight: 800;
}

.preview-sheet .glue-strip,
.preview-sheet .cut-label,
.preview-sheet .page-code {
  font-size: clamp(4px, 0.58vw, 8px);
}

.preview-sheet .page-badge {
  font-size: clamp(6px, 0.75vw, 10px);
}

.how-it-works {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.5fr;
  gap: 48px;
  padding: 92px 0 80px;
}

.how-it-works > div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.how-it-works h2 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.how-it-works ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.how-it-works li {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(14, 20, 34, 0.62);
}

.how-it-works li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  color: rgba(133, 153, 210, 0.24);
  font-size: 54px;
  font-weight: 800;
}

.how-it-works li:nth-child(1)::before {
  content: "1";
}

.how-it-works li:nth-child(2)::before {
  content: "2";
}

.how-it-works li:nth-child(3)::before {
  content: "3";
}

.how-it-works li strong {
  margin-bottom: 7px;
  font-size: 16px;
}

.how-it-works li span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
}

#printArea {
  display: none;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .hero-note {
    display: none;
  }

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

  .preview-panel {
    min-height: 660px;
  }

  .preview-stage {
    min-height: 585px;
  }
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

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

  .preview-panel {
    min-height: 520px;
  }

  .preview-stage {
    min-height: 440px;
  }

  .sheet-grid {
    min-width: 650px;
  }

  .how-it-works {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main,
  footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .topbar {
    min-height: 62px;
    padding-inline: 14px;
  }

  .brand {
    font-size: 18px;
  }

  .privacy-pill {
    font-size: 0;
  }

  .privacy-pill::after {
    content: "Privado";
    font-size: 11px;
  }

  .hero {
    padding: 38px 0 24px;
  }

  h1 {
    font-size: 38px;
  }

  .control-panel {
    padding: 16px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .secondary-fields {
    grid-template-columns: 1fr 1fr;
  }

  .pdf-controls {
    grid-template-columns: 1fr;
  }

  .pdf-status {
    min-height: auto;
  }

  .preview-toolbar {
    align-items: start;
    padding: 15px;
  }

  .preview-stats {
    display: grid;
    justify-items: end;
  }

  .preview-stage {
    padding: 14px;
  }

  .how-it-works {
    padding: 64px 0 56px;
  }

  .how-it-works ol {
    grid-template-columns: 1fr;
  }

  .how-it-works li {
    min-height: 130px;
  }

  footer {
    flex-direction: column;
  }
}

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

@media print {
  html,
  body {
    margin: 0 !important;
    padding: 0 !important;
    background: white !important;
  }

  body > * {
    display: none !important;
  }

  body > #printArea {
    display: block !important;
  }

  .print-sheet {
    break-after: page;
    page-break-after: always;
    background: white;
    color: black;
  }

  .print-sheet:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  .print-sheet .sheet-art {
    background: white;
  }

  .print-sheet .glue-strip {
    color: black;
    background: rgba(226, 226, 226, 0.84);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .print-sheet .cut-label,
  .print-sheet .page-code,
  .print-sheet .cut-line {
    color: black;
  }
}
