/* PZYFER SOLUTIONS LIMITED — PUNCHED CARD BUREAU
   Dark tabulating-iron theme, punch mint accent, ivory card faces. */

:root {
  --iron: #23262B;
  --ivory: #F2EFE4;
  --card: #F5F1E6;
  --ink: #26262B;
  --mint: #60DBC3;
  --face: #2B2F35;
  --steel: #7C8288;
  --stacker: #191C20;
  --edge: #8F2A24;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Courier New", "Courier", monospace;
  font-size: 16px;
  line-height: 1.65;
  background-color: #23262B;
  color: #F2EFE4;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #60DBC3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4 {
  font-family: "Courier New", "Courier", monospace;
  line-height: 1.2;
  margin: 0 0 0.6em 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1em 0;
}

/* ============ GO TO TOP ============ */
.gtt-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border: 2px solid #F5F1E6;
  border-radius: 50%;
  background-color: #191C20;
  color: #F5F1E6;
  font-family: "Courier New", monospace;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 0 #8F2A24;
}

.gtt-btn:hover {
  background-color: #60DBC3;
  color: #191C20;
  border-color: #191C20;
}

/* ============ CARD FRAME ============ */
.bureau-shell {
  max-width: 1140px;
  margin: 30px auto 0 auto;
  padding: 0 18px;
}

.bureau-card {
  position: relative;
  background-color: #F5F1E6;
  color: #26262B;
  border: 2px solid #191C20;
  clip-path: polygon(0 0, calc(100% - 68px) 0, 100% 68px, 100% 100%, 0 100%);
  box-shadow: 0 14px 0 #191C20, 0 0 0 6px #2B2F35;
}

.bureau-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background-color: #8F2A24;
  z-index: 3;
}

/* ============ CARD TOP EDGE NAV ============ */
.edge-band {
  position: relative;
  background-color: #F5F1E6;
  border-bottom: 2px solid #26262B;
  padding: 10px 22px 8px 34px;
  overflow: hidden;
}

.edge-columns {
  display: block;
  font-size: 10px;
  letter-spacing: 6px;
  color: #7C8288;
  white-space: nowrap;
  padding-left: 2px;
  user-select: none;
}

.edge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 8px;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #60DBC3;
  color: #191C20;
  border: 2px solid #191C20;
  padding: 4px 10px 4px 8px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.chip-holes {
  display: inline-flex;
  gap: 3px;
}

.chip-holes i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #191C20;
  display: inline-block;
}

.brand-word {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #26262B;
}

.edge-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  flex-wrap: wrap;
  width: auto;
}

.field-label {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #26262B;
  border-bottom: 2px dotted #7C8288;
  padding-bottom: 2px;
}

.field-label b {
  color: #8F2A24;
  margin-right: 4px;
}

.field-label:hover {
  border-bottom-style: solid;
  border-bottom-color: #60DBC3;
  text-decoration: none;
}

.nav-submit {
  display: inline-block;
  background-color: #60DBC3;
  color: #191C20;
  border: 2px solid #191C20;
  padding: 7px 14px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.nav-submit:hover {
  background-color: #26262B;
  color: #F5F1E6;
  text-decoration: none;
}

/* ============ FIELD STRIP COMMON ============ */
.field-strip {
  position: relative;
  padding: 42px 40px 50px 44px;
  border-bottom: 2px solid #26262B;
}

.field-strip:last-of-type {
  border-bottom: none;
}

.field-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #60DBC3;
  color: #191C20;
  border: 2px solid #191C20;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 5px 12px;
  margin-bottom: 22px;
}

.field-tab .punch-rule {
  display: inline-block;
  width: 60px;
  height: 0;
  border-top: 2px dotted #191C20;
}

/* ============ FIELD 01 HEADLINE CARD ============ */
.headline-card {
  position: relative;
  background-color: #F5F1E6;
  border: 2px solid #26262B;
  padding: 44px 46px 40px 46px;
}

.headline-card .hole-cluster {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 9px);
  gap: 6px;
}

.hole-cluster.hc-left {
  left: 14px;
  top: 40px;
}

.hole-cluster.hc-right {
  right: 16px;
  top: 90px;
}

.hole-cluster.hc-bottom {
  left: 46%;
  bottom: 12px;
}

.hole-cluster span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #26262B;
  display: block;
}

.eyebrow-row {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8F2A24;
  margin-bottom: 18px;
}

.headline-h1 {
  font-size: clamp(26px, 5vw, 42px);
  color: #26262B;
  margin-bottom: 20px;
  max-width: 20ch;
}

.mint-band {
  background-color: #60DBC3;
  color: #191C20;
  padding: 0 8px;
}

.headline-lead {
  font-size: 17px;
  max-width: 62ch;
  color: #26262B;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-mint {
  display: inline-block;
  background-color: #60DBC3;
  color: #191C20;
  border: 2px solid #191C20;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.btn-mint:hover {
  background-color: #F5F1E6;
  text-decoration: none;
}

.btn-ink {
  display: inline-block;
  background-color: #F5F1E6;
  color: #26262B;
  border: 2px solid #26262B;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.btn-ink:hover {
  background-color: #26262B;
  color: #F5F1E6;
  text-decoration: none;
}

.corner-legend {
  margin-top: 34px;
  padding-top: 14px;
  border-top: 2px dotted #7C8288;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #26262B;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ FIELD 02 SORTER POCKET ============ */
.sorter-pocket {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
}

.sorter-card {
  position: relative;
  background-color: #F5F1E6;
  border: 2px solid #26262B;
  padding: 24px 28px 24px 28px;
  margin-bottom: 22px;
  width: 92%;
  box-shadow: 8px 8px 0 #7C8288;
}

.sorter-card:nth-child(2n) { margin-left: 40px; width: 90%; }
.sorter-card:nth-child(3n) { margin-left: 18px; width: 94%; }
.sorter-card:nth-child(4n) { margin-left: 56px; width: 88%; }
.sorter-card:nth-child(5n) { margin-left: 30px; width: 91%; }

.mini-holes {
  position: absolute;
  top: 14px;
  right: 16px;
  display: grid;
  grid-template-columns: repeat(4, 6px);
  gap: 4px;
}

.mini-holes span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #60DBC3;
  border: 1px solid #26262B;
  display: block;
}

.sorter-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #26262B;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-right: 60px;
}

.sorter-name:hover {
  color: #8F2A24;
  text-decoration: none;
}

.sorter-copy {
  color: #26262B;
  font-size: 15px;
  max-width: 66ch;
  margin: 0;
}

/* ============ FIELD 03 TABULATOR ROOM ============ */
.tabulator-room {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.room-prose {
  color: #26262B;
  max-width: 62ch;
  font-size: 15.5px;
}

.room-prose h3 {
  color: #26262B;
  font-size: 22px;
}

.wheel-row {
  background-color: #2B2F35;
  border: 2px solid #191C20;
  padding: 26px 22px;
}

.shaft {
  height: 10px;
  background-color: #7C8288;
  border: 2px solid #191C20;
  margin: 46px 0 10px 0;
}

.wheels {
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.wheel {
  flex: 1;
  background-color: #F5F1E6;
  border: 2px solid #191C20;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #26262B;
  position: relative;
}

.wheel .needle {
  width: 3px;
  height: 40%;
  background-color: #60DBC3;
  transform-origin: bottom center;
  position: absolute;
  bottom: 50%;
}

.wheel .digit {
  font-size: 22px;
  font-weight: 700;
  color: #26262B;
}

.wheel .arc {
  font-size: 9px;
  letter-spacing: 2px;
  color: #8F2A24;
}

.paper-tape {
  margin-top: 18px;
  background-color: #F5F1E6;
  border: 2px solid #191C20;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #26262B;
  text-align: right;
}

/* ============ FIELD 04 KEYPUNCH DESK ============ */
.keypunch-card {
  position: relative;
  background-color: #F5F1E6;
  border: 2px solid #26262B;
  padding: 8px 30px 34px 30px;
}

.punch-border {
  display: flex;
  gap: 7px;
  margin: 0 -30px 26px -30px;
  padding: 8px 30px;
  border-bottom: 2px solid #26262B;
  background-color: #F5F1E6;
}

.punch-border i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #26262B;
  display: inline-block;
}

.form-clip {
  position: absolute;
  top: -14px;
  right: 44px;
  width: 74px;
  height: 26px;
  background-color: #60DBC3;
  border: 2px solid #191C20;
}

.form-title {
  font-size: 20px;
  color: #26262B;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
}

.kp-form {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.kp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kp-field label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8F2A24;
}

.kp-field input,
.kp-field textarea {
  font-family: "Courier New", monospace;
  font-size: 15px;
  color: #26262B;
  background-color: #F5F1E6;
  border: 2px solid #26262B;
  padding: 10px 12px;
}

.kp-field input:focus,
.kp-field textarea:focus {
  outline: none;
  border-color: #60DBC3;
  box-shadow: 0 0 0 2px #191C20;
}

.kp-note {
  font-size: 12px;
  color: #26262B;
  letter-spacing: 0.04em;
}

.desk-legend {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 2px dotted #7C8288;
  color: #26262B;
  font-size: 14px;
}

.desk-legend strong {
  letter-spacing: 0.08em;
}

.desk-legend .legend-line {
  margin-bottom: 5px;
}

/* ============ VERIFIER GATE ============ */
.verifier-gate {
  background-color: #191C20;
  color: #F2EFE4;
  padding: 46px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  border-top: 2px solid #26262B;
}

.gate-ring {
  flex: none;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid #60DBC3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #60DBC3;
  font-weight: 700;
}

.gate-copy {
  flex: 1 1 340px;
  min-width: 260px;
}

.gate-copy h2 {
  color: #F5F1E6;
  font-size: 22px;
  margin-bottom: 8px;
}

.gate-copy p {
  color: #F2EFE4;
  margin: 0;
  font-size: 14.5px;
  max-width: 62ch;
}

.gate-copy .verify-standard {
  margin-top: 8px;
  color: #60DBC3;
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ============ STACKER VESTIBULE FOOTER ============ */
.stacker-vestibule {
  position: relative;
  background-color: #191C20;
  color: #F2EFE4;
  border-top: 2px solid #26262B;
  padding-bottom: 4px;
}

.stacker-edge {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  padding: 0 24px;
  height: 34px;
  background-color: #191C20;
  border-bottom: 2px solid #2B2F35;
}

.stacker-edge i {
  display: block;
  width: 12px;
  background-color: #F5F1E6;
  border: 1px solid #2B2F35;
}

.stacker-edge i:nth-child(1) { height: 22px; }
.stacker-edge i:nth-child(2) { height: 27px; }
.stacker-edge i:nth-child(3) { height: 19px; }
.stacker-edge i:nth-child(4) { height: 29px; }
.stacker-edge i:nth-child(5) { height: 24px; }
.stacker-edge i:nth-child(6) { height: 30px; background-color: #60DBC3; }
.stacker-edge i:nth-child(7) { height: 21px; }
.stacker-edge i:nth-child(8) { height: 26px; }
.stacker-edge i:nth-child(9) { height: 18px; }
.stacker-edge i:nth-child(10) { height: 28px; }
.stacker-edge i:nth-child(11) { height: 23px; }
.stacker-edge i:nth-child(12) { height: 30px; }

.vestibule-inner {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 34px 24px 30px 24px;
  text-align: center;
}

.vestibule-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 22px;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.vestibule-links a {
  color: #F5F1E6;
  border-bottom: 2px dotted #60DBC3;
  padding-bottom: 2px;
}

.vestibule-links a:hover {
  color: #60DBC3;
  text-decoration: none;
}

.vestibule-block {
  color: #F2EFE4;
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

.vestibule-block strong {
  color: #F5F1E6;
  letter-spacing: 0.08em;
}

.vestibule-block a {
  color: #60DBC3;
}

/* ============ SERVICES + CONTACT PAGE EXTRAS ============ */
.page-intro {
  color: #26262B;
  max-width: 70ch;
  font-size: 16px;
}

.detail-block {
  color: #26262B;
  max-width: 68ch;
  font-size: 15.5px;
  margin-top: 18px;
}

.detail-block h3 {
  color: #26262B;
  font-size: 20px;
  margin-top: 26px;
}

.service-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 26px;
  color: #26262B;
  font-size: 14px;
}

.service-table th,
.service-table td {
  border: 2px solid #26262B;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.service-table th {
  background-color: #26262B;
  color: #F5F1E6;
  letter-spacing: 0.08em;
}

.faq-block {
  margin-top: 24px;
}

.faq-item {
  border-left: 6px solid #60DBC3;
  background-color: #F5F1E6;
  border-top: 2px solid #26262B;
  border-right: 2px solid #26262B;
  border-bottom: 2px solid #26262B;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.faq-item h3 {
  color: #26262B;
  font-size: 16px;
  margin-bottom: 6px;
}

.faq-item p {
  color: #26262B;
  margin: 0;
  font-size: 14.5px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  color: #26262B;
}

.hours-list li {
  padding: 6px 0;
  border-bottom: 1px dotted #7C8288;
  font-size: 14.5px;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 1;
  transform: none;
}

body.js-on .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

body.js-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .tabulator-room {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .field-strip {
    padding: 30px 20px 36px 24px;
  }
  .headline-card {
    padding: 28px 22px 26px 22px;
  }
  .bureau-shell {
    padding: 0 8px;
  }
}
