/* Bench Master — shared styles
   Palette from the badge logo: true black, circuit-trace green. */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --void:    #000000;   /* page — true black */
  --deep:    #070B09;   /* alt section */
  --panel:   #0C1310;   /* cards */
  --panel-2: #111A16;
  --hair:    #1F3A2E;   /* rules, borders */

  --neon:    #45E03F;   /* logo green */
  --neon-d:  #1E9A26;
  --glow:    rgba(69, 224, 63, 0.28);

  --ink:     #E8F2EA;
  --muted:   #8FA898;
  --dim:     #55705F;

  --display: 'Archivo', system-ui, sans-serif;
  --body:    'IBM Plex Sans', system-ui, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, monospace;

  --wrap: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--void);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
a { color: var(--neon); }
p { color: #C4D6C9; }

/* ---------------------------------------------------------- masthead */

header.top {
  border-bottom: 1px solid var(--hair);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 20;
}
.top-in {
  max-width: var(--wrap); margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}

.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand img { height: 58px; width: auto; display: block; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-txt b {
  font-family: var(--display); font-weight: 800; font-size: 18px;
  letter-spacing: 0.01em; color: var(--ink); text-transform: uppercase;
}
.brand-txt span {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--neon); margin-top: 4px;
}

nav.top-nav { margin-left: auto; display: flex; gap: 22px; flex-wrap: wrap; }
nav.top-nav a {
  font-size: 14.5px; text-decoration: none; color: var(--muted);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
nav.top-nav a:hover { color: var(--ink); border-bottom-color: var(--neon); }
nav.top-nav a[aria-current="page"] { color: var(--neon); border-bottom-color: var(--neon); }

/* ---------------------------------------------------------- type */

h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(34px, 5.6vw, 60px); line-height: 1.02;
  letter-spacing: -0.03em; margin: 0 0 18px;
}
h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(23px, 3vw, 31px); line-height: 1.14;
  letter-spacing: -0.022em; margin: 0 0 14px;
}
h3 { font-family: var(--display); font-weight: 600; font-size: 18px; margin: 0 0 6px; color: var(--ink); }

.lede { font-size: 19px; color: #B4CBBB; max-width: 56ch; }

.eyebrow {
  font-family: var(--mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--neon);
  margin: 0 0 14px;
}

section { padding: 70px 0; border-top: 1px solid var(--hair); }
section:first-of-type { border-top: none; }
section.alt { background: var(--deep); }

/* ---------------------------------------------------------- the plate */
/* Signature element: the service label on a module, lit like a backlit panel. */

.plate {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--hair);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
}
.plate-hd {
  border-bottom: 1px solid var(--hair);
  padding: 10px 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.17em; text-transform: uppercase; color: var(--neon);
}
.barcode {
  height: 20px; flex: 0 0 92px;
  background-image: repeating-linear-gradient(90deg,
    var(--neon) 0 1px, transparent 1px 3px, var(--neon) 3px 5px, transparent 5px 6px,
    var(--neon) 6px 8px, transparent 8px 11px, var(--neon) 11px 12px, transparent 12px 14px);
  opacity: .4;
}
.plate-body { padding: 4px 16px 14px; }

.field { display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px dotted var(--hair); }
.field:last-child { border-bottom: none; }
.field dt {
  flex: 0 0 40%; margin: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); padding-top: 3px;
}
.field dd { margin: 0; flex: 1; min-width: 0; font-weight: 500; overflow-wrap: anywhere; }
.hero.plate-wide { grid-template-columns: 0.82fr 1.18fr; }
@media (max-width: 860px) { .hero.plate-wide { grid-template-columns: 1fr; } }
.plate-wide .field dt { flex: 0 0 30%; }
.field dd.email a {
  font-family: var(--mono); font-size: 14px; letter-spacing: -0.01em;
  white-space: nowrap; text-decoration: none; border-bottom: 1px solid var(--neon);
}
@media (max-width: 400px) { .field dd.email a { font-size: 12px; } }
.field dd.num { font-family: var(--mono); font-size: 15px; color: var(--neon); }

/* ---------------------------------------------------------- hero */

.hero { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------------------------------------------------- buttons */

.btn {
  display: inline-block; font-family: var(--body); font-weight: 600;
  font-size: 16px; text-decoration: none; cursor: pointer;
  padding: 13px 26px; border: 1px solid var(--neon);
  background: var(--neon); color: #04140A;
  transition: box-shadow .15s ease, background .15s ease;
}
.btn:hover { box-shadow: 0 0 24px var(--glow); }
.btn.ghost { background: transparent; color: var(--neon); border-color: var(--neon); }
.btn.ghost:hover { background: rgba(69, 224, 63, 0.12); box-shadow: none; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* ---------------------------------------------------------- tables */

table.spec { width: 100%; border-collapse: collapse; font-size: 15.5px; }
table.spec th {
  text-align: left; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon);
  font-weight: 500; padding: 0 14px 10px 0; border-bottom: 1px solid var(--hair);
}
table.spec td { padding: 14px 14px 14px 0; border-bottom: 1px solid var(--hair); vertical-align: top; color: #B4CBBB; }
table.spec td:first-child { color: var(--ink); font-weight: 500; }
table.spec td .num, table.spec td.num {
  font-family: var(--mono); font-size: 13.5px; color: var(--muted); white-space: nowrap;
}
@media (max-width: 700px) {
  table.spec thead { display: none; }
  table.spec tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--hair); }
  table.spec td { display: block; border: none; padding: 3px 0; }
}

/* ---------------------------------------------------------- process */

ol.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; }
ol.steps li {
  counter-increment: s; position: relative;
  padding: 0 0 28px 60px; border-left: 1px solid var(--hair);
  margin-left: 15px;
}
ol.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
ol.steps li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: -15px; top: -2px;
  width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--void); border: 1px solid var(--neon); color: var(--neon);
  font-family: var(--mono); font-size: 11px; font-weight: 600;
}
ol.steps li p { color: #A9C2B1; margin: 4px 0 0; }

/* ---------------------------------------------------------- forms */

.form-field { margin-bottom: 20px; }
label.lbl {
  display: block; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 7px;
}
input[type="text"], input[type="email"], textarea, select {
  width: 100%; font-family: var(--body); font-size: 16px; color: var(--ink);
  padding: 12px 13px; background: var(--panel);
  border: 1px solid var(--hair); border-radius: 0;
}
input::placeholder { color: #3F5A4A; }
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--neon); outline-offset: 1px; border-color: var(--neon);
}
input.code {
  font-family: var(--mono); font-size: 22px; letter-spacing: 0.24em;
  text-transform: uppercase; text-align: center; padding: 16px 13px; color: var(--neon);
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } }

.note {
  font-size: 14.5px; color: var(--muted);
  border-left: 2px solid var(--neon); padding: 3px 0 3px 14px; margin: 22px 0;
}

iframe.gform { width: 100%; border: 1px solid var(--hair); background: #fff; }

/* ---------------------------------------------------------- misc */

.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 34px; }
.narrow { max-width: 680px; }

footer.foot {
  border-top: 1px solid var(--hair); background: var(--deep);
  padding: 34px 0; font-size: 14.5px; color: var(--muted);
}
footer.foot .foot-in { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
footer.foot a { color: var(--muted); text-decoration: none; }
footer.foot a:hover { color: var(--neon); }
footer.foot .sn {
  margin-left: auto; font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--dim);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}


/* repair intake layout — form left, packing panel right and wider */
.intake { display: grid; grid-template-columns: 1fr 1.05fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .intake { grid-template-columns: 1fr; gap: 32px; } }

.formslot {
  border: 1px dashed var(--hair); background: var(--panel);
  padding: 26px; min-height: 260px;
  display: flex; flex-direction: column; justify-content: center;
}

table.spec td.price {
  font-family: var(--mono); font-size: 15px; font-weight: 600;
  color: var(--neon); white-space: nowrap; width: 22%;
}
@media (max-width: 700px) { table.spec td.price { width: auto; font-size: 17px; } }
