/* ---------------------------------------------------------------
   TOKENS
--------------------------------------------------------------- */
:root {
  --bg: #f7f5f0;
  --bg-alt: #eee9df;
  --surface: #ffffff;
  --ink: #1b1b18;
  --ink-soft: #6b655c;
  --line: rgba(27, 27, 24, 0.15);
  --line-strong: rgba(27, 27, 24, 0.32);
  --cyan: #0089c8;
  --magenta: #c3005f;
  --yellow: #d9a400;
  --yellow-chip: #f4c400;
    --accent: var(--yellow-chip);
    --accent-soft: rgba(244, 196, 0, 0.16);

  --font-display: "Arial Black", "Arial Bold", Arial, "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", "IBM Plex Mono", Consolas, monospace;

  --container: 1180px;

  /* Text colors guaranteed to meet WCAG AA against the yellow --accent background
     (and its darkened :hover state) — --ink-soft (~3.5:1) and --accent itself
     (~1.7:1) both fail there, and --ink flips to near-white in dark mode even
     though --accent stays the same yellow, which would fail even harder. */
  --on-accent-text: #3a362f;
  --accent-text: #a67c00;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #16130e;
    --bg-alt: #201b14;
    --surface: #221d15;
    --ink: #f4efe4;
    --ink-soft: #b3a996;
    --line: rgba(244, 239, 228, 0.16);
    --line-strong: rgba(244, 239, 228, 0.36);
    --cyan: #3fc0f0;
    --magenta: #ff5fa8;
    --yellow: #f4c400;
    --yellow-chip: #f4c400;
      --accent: var(--yellow);
      --accent-soft: rgba(244, 196, 0, 0.12);
      --accent-text: var(--yellow);
  }
}

:root[data-theme="dark"] {
  --bg: #16130e;
  --bg-alt: #201b14;
  --surface: #221d15;
  --ink: #f4efe4;
  --ink-soft: #b3a996;
  --line: rgba(244, 239, 228, 0.16);
  --line-strong: rgba(244, 239, 228, 0.36);
  --cyan: #3fc0f0;
  --magenta: #ff5fa8;
  --yellow: #f4c400;
  --yellow-chip: #f4c400;
    --accent: var(--yellow);
    --accent-soft: rgba(244, 196, 0, 0.12);
    --accent-text: var(--yellow);
}

/* ---------------------------------------------------------------
   RESET-ish / BASE
--------------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.side-badge {
  display: none;
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 200px;
  text-align: center;
}
.side-badge .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.side-badge img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}
@media (min-width: 1560px) {
  .side-badge { display: block; }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

section { padding: 88px 0; border-top: 1px solid var(--line); }
section:first-of-type { border-top: none; }

@media (max-width: 720px) {
  section { padding: 60px 0; }
}

/* ---------------------------------------------------------------
   CROP MARKS + REGISTRATION MARK (signature motif)
--------------------------------------------------------------- */
.crop-frame { position: relative; }
.crop-frame::before,
.crop-frame::after,
.crop-frame .cm-tl,
.crop-frame .cm-tr {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.crop-frame::before { top: -1px; left: -1px; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.crop-frame::after { top: -1px; right: -1px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); }
.crop-frame .cm-tl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.crop-frame .cm-tr { bottom: -1px; right: -1px; border-bottom: 2px solid var(--ink); border-right: 2px solid var(--ink); }

/* ---------------------------------------------------------------
   HEADER
--------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--accent);
  border-bottom: 2px solid var(--ink);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
/* The header logo always sits on --accent (yellow, same in both themes); pin
   it to --on-accent-text so it doesn't turn near-white-on-yellow in dark mode. */
.site-header .logo-text { color: var(--on-accent-text); }
.logo-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-top: 1px;
}
/* Header sits on --accent (yellow); --ink-soft only reaches ~3.5:1 there,
   so the header logo/nav use --on-accent-text instead to meet WCAG AA. */
.site-header .logo-sub { color: var(--on-accent-text); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  text-decoration: none;
  font-size: 14px;
  color: var(--on-accent-text);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--on-accent-text);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--on-accent-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
/* --accent is the same yellow in light and dark mode, so its label uses
   --on-accent-text (not --ink) to avoid near-white-on-yellow in dark mode. */
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--on-accent-text); }
.btn-primary:hover { background: color-mix(in srgb, var(--accent) 82%, black); border-color: color-mix(in srgb, var(--accent) 82%, black); color: var(--on-accent-text); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--accent);
    border-bottom: 2px solid var(--ink);
    padding: 8px 28px 16px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero { padding: 56px 0 0; border-top: none; }
.hero-panel {
  margin: 0 20px;
  padding: 56px 44px 0;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--accent);
}
@media (max-width: 640px) {
  .hero-panel { margin: 0 12px; padding: 40px 22px 0; }
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 28px;
}
.hero-copy { max-width: 620px; }
.hero-copy .eyebrow { margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hero-copy h1 {
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.05;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--accent-text);
}
.hero-sub {
  max-width: 560px;
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-spec {
  margin-top: 34px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.9;
}
.hero-spec strong { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) {
  .hero-top { flex-direction: column; }
}

/* Colour calibration bar */
.colorbar {
  display: flex;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.colorbar .chip {
  flex: 1;
  height: 46px;
  position: relative;
}
.colorbar .chip span {
  position: absolute;
  bottom: -20px;
  left: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.cb-c { background: var(--cyan); }
.cb-m { background: var(--magenta); }
.cb-y { background: var(--yellow-chip); }
.cb-k { background: var(--ink); }
.cb-step { background: linear-gradient(to right, var(--ink), var(--bg)); }
.colorbar-wrap { padding-bottom: 26px; }

/* ---------------------------------------------------------------
   STAT / SPEC STRIP
--------------------------------------------------------------- */
.spec-strip {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--yellow-chip) 9%, var(--bg-alt));
}
.spec-strip .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spec-item { display: flex; flex-direction: column; gap: 6px; }
.spec-item .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.spec-item .value { font-family: var(--font-mono); font-size: 22px; font-weight: 600; }
@media (max-width: 720px) {
  .spec-strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------------------------------------------------------------
   SECTION HEADS
--------------------------------------------------------------- */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); line-height: 1.05; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; }

/* ---------------------------------------------------------------
   PRICE GROUPS
--------------------------------------------------------------- */
.price-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.06);
}
.price-group {
  background: var(--surface);
  padding: 30px 30px 6px;
}
.price-group h3 {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.price-group h3 .mono { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--ink-soft); }
.price-group h3:has(+ .price-note) { border-bottom: none; padding-bottom: 0; margin-bottom: 6px; }
.price-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  margin: 0 0 16px 19px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.price-dot { flex: none; width: 9px; height: 9px; border-radius: 1px; transform: translateY(-1px); }
.price-dot.dot-c { background: var(--cyan); }
.price-dot.dot-m { background: var(--magenta); }
.price-dot.dot-y { background: var(--yellow-chip); }
.price-dot.dot-k { background: var(--ink); }

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

/* ---------------------------------------------------------------
   FORMATS TABLE
--------------------------------------------------------------- */
.format-table { width: 100%; border-collapse: collapse; }
.format-table th,
.format-table td {
  padding: 12px 4px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.format-table th:last-child,
.format-table td:last-child { text-align: right; }
.format-table th {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom-color: var(--line-strong);
}
.format-table tbody tr { transition: background-color 0.15s ease; }
.format-table tbody tr:hover { background: var(--accent-soft); }
.format-table tbody tr:last-child td { border-bottom: none; }
.format-table .format-size {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
}
.format-table .mono { font-family: var(--font-mono); font-size: 12px; color: var(--ink-soft); white-space: nowrap; }
.format-table .format-price {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
.format-table .format-price span { display: block; font-size: 10px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

@media (max-width: 720px) {
  /* Visually hidden rather than display:none, so screen readers still
     announce column headers when navigating cell by cell. */
  .format-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .format-table td { display: block; border-bottom: none; padding: 3px 0; }
  .format-table td[data-label]::before {
    content: attr(data-label) ": ";
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .format-table td:last-child { text-align: left; }
  .format-table .format-price { text-align: left; }
  .format-table tbody tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .format-table tbody tr:hover { background: none; }
}

/* ---------------------------------------------------------------
   SERVICES GRID
--------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-icon { width: 34px; height: 34px; color: var(--accent); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 17px; font-weight: 700; }
.service-card p { font-size: 14px; color: var(--ink-soft); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* Process section removed */

/* ---------------------------------------------------------------
   STUDIO / LOCATION — shipping-label styling
--------------------------------------------------------------- */
.studio { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: start; }
.studio-copy p { color: var(--ink-soft); font-size: 16px; max-width: 480px; }
.studio-copy p + p { margin-top: 14px; }

.label-card {
  border: 2px solid var(--ink);
  background: var(--surface);
  padding: 28px;
  position: relative;
}
.label-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--line-strong);
  pointer-events: none;
}
.label-row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-family: var(--font-mono); font-size: 13px; }
.label-row:last-child { border-bottom: none; }
.label-row .k { color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; padding-top: 2px; }
.label-row .v { text-align: right; font-weight: 600; }
.label-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }

@media (max-width: 860px) {
  .studio { grid-template-columns: 1fr; gap: 40px; }
}

.map-frame {
  margin-top: 40px;
  border: 2px solid var(--ink);
  position: relative;
  aspect-ratio: 16 / 6;
  overflow: hidden;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.35) contrast(1.05);
}

@media (max-width: 640px) {
  .map-frame { aspect-ratio: 4 / 3; }
}

/* ---------------------------------------------------------------
   CTA BAND
--------------------------------------------------------------- */
.cta-band {
  /* Always sits on --accent (yellow, unchanged by theme), so its text uses
     --on-accent-text rather than --ink, which would go near-white in dark mode. */
  background: var(--accent);
  color: var(--on-accent-text);
  text-align: center;
  padding: 76px 0;
}
.cta-band .eyebrow { color: color-mix(in srgb, var(--on-accent-text) 75%, transparent); justify-content: center; display: flex; gap: 8px; }
.cta-band h2 { font-size: clamp(28px, 5vw, 48px); margin-top: 16px; color: var(--on-accent-text); }
.cta-actions { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: color-mix(in srgb, var(--on-accent-text) 60%, transparent); color: var(--on-accent-text); }
.cta-band .btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* ---------------------------------------------------------------
   WIDE-FORMAT PRINTER ANIMATION (hero)
--------------------------------------------------------------- */
.hero-printer { position: relative; width: min(380px, 100%); flex-shrink: 0; height: 420px; }

/* Chassis: two-tone industrial body sitting on the paper roll, not a flat AC-style box */
.hero-printer .printer-body {
  position: relative;
  z-index: 2;
  height: 108px;
  border-radius: 6px 6px 3px 3px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.hero-printer .printer-panel {
  position: relative;
  height: 34px;
  background: color-mix(in srgb, var(--ink) 88%, var(--accent) 12%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
}
.hero-printer .panel-screen {
  width: 34px;
  height: 14px;
  border-radius: 2px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}
.hero-printer .panel-btn {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.hero-printer .printer-chassis {
  position: relative;
  height: 74px;
  background: var(--ink);
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.035) 0px,
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px,
    transparent 10px
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 12px;
}
.hero-printer .printer-slot {
  width: 88%;
  height: 9px;
  background: var(--bg);
  border-radius: 3px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Paper roll: same unibody tone as the chassis so it reads as one machine,
   with contrasting end-caps — the tell that this is a printer, not an AC grille */
.hero-printer .printer-roll {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 74%;
  height: 26px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ink) 92%, var(--bg) 8%) 0%,
    var(--ink) 100%
  );
  border-radius: 13px;
  z-index: 3;
  box-shadow: inset 0 -3px 5px rgba(0, 0, 0, 0.12);
}
.hero-printer .roll-cap {
  position: absolute;
  top: -5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.hero-printer .roll-cap::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
}
.hero-printer .roll-cap-left { left: -16px; }
.hero-printer .roll-cap-right { right: -16px; }
.hero-printer .roll-arm { display: none; }

.hero-printer .printer-led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: led-blink 1.6s ease-in-out infinite;
}

/* Output tray catching the printed sheet, another printer-specific cue */
.hero-printer .printer-tray {
  position: relative;
  z-index: 2;
  width: 96%;
  height: 10px;
  margin: 0 auto;
  background: color-mix(in srgb, var(--ink) 85%, transparent);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}
.hero-printer .printer-paper {
  position: absolute;
  top: 118px;
  left: 5%;
  width: 90%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-top: none;
  overflow: hidden;
  height: 0;
  z-index: 1;
  animation: paper-feed 6s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.paper-lines { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 11px; }
.paper-lines span {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--ink);
  white-space: nowrap;
}
.paper-lines .paper-name { font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.paper-lines .caret {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--accent);
  margin-left: 3px;
  vertical-align: -2px;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes paper-feed {
  0%, 5% { height: 0; }
  60%, 82% { height: 296px; }
  100% { height: 0; }
}
@keyframes led-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}
@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (max-width: 720px) {
  .hero-printer { margin: 0 auto; }
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
footer { padding: 56px 0 40px; border-top: 3px solid var(--accent); }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 14px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom .mono { font-size: 12px; }
