/* /hire/ density. Rem type. Laptop and phone show different useful chrome. */
:root {
  --bg: #0b0d10;
  --panel: #14181e;
  --panel-2: #1a1f27;
  --ink: #e8eaed;
  --muted: #9aa3ad;
  --line: #2a3038;
  --cyan: #47c1b0;
  --cyan-ink: #06201c;
  --gold: #c9a66b;
  --ok: #7bd389;
  --warn: #e08b7a;
  --soft: #10141a;
  font-size: 15px;
}
* { box-sizing: border-box; }
html { width: 100%; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", "Source Sans Pro", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}
a { color: var(--cyan); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
img { display: block; max-width: 100%; height: auto; }
.mono, code, .sku, .cell, .pipe-id {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
.shell {
  width: min(100%, 88rem);
  margin-inline: auto;
  padding-inline: 1rem;
}
.phone-only { display: none !important; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}
.brand-mark {
  display: grid;
  width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0;
}
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.55rem 0.95rem; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; }
.nav-links a:hover { color: var(--ink); }
.kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; font-weight: 650; letter-spacing: -0.02em; }
h1 { margin: 0.4rem 0 0.55rem; font-size: 2.15rem; line-height: 1.1; }
h1 span { color: var(--cyan); }
h2 { margin: 0.2rem 0 0.45rem; font-size: 1.2rem; }
h3 { font-size: 1.02rem; }
p { margin: 0; }
.lede, .section-copy { color: var(--muted); max-width: 40rem; }
.hero {
  display: grid;
  grid-template-columns: minmax(22rem, 0.46fr) minmax(28rem, 1.1fr);
  gap: 1.1rem;
  padding: 1.1rem 0 0.9rem;
  align-items: stretch;
}
.cta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.btn {
  display: inline-flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: var(--cyan-ink);
  font: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { filter: brightness(1.06); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.9rem;
}
.fact {
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--muted);
  font-size: 0.8rem;
}
.fact b { display: block; color: var(--ink); font-size: 0.85rem; }
.laptop {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0.5rem 0.5rem 0;
  border: 1px solid #3a414b;
  border-radius: 0.6rem 0.6rem 0.25rem 0.25rem;
  background: #0e1116;
  box-shadow: 0 0 0 1px #1c2128, 0 22px 48px rgba(0, 0, 0, 0.55);
}
.laptop-still {
  position: absolute;
  inset: 0.5rem 0.5rem auto 0.5rem;
  height: 4.2rem;
  background: #12161c center/cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .laptop-still {
    animation: ken 22s ease-in-out infinite alternate;
  }
}
@keyframes ken {
  from { transform: scale(1.02); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}
.laptop-lid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.4rem 0.45rem;
}
.laptop .workbench {
  position: relative;
  z-index: 1;
  border-color: #2a3038;
  background: #14181e;
}
.laptop-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #3d444d;
}
.laptop-dot:nth-child(1) { background: #c45c5c; }
.laptop-dot:nth-child(2) { background: #c9a66b; }
.laptop-dot:nth-child(3) { background: #47c1b0; }
.laptop-title {
  margin-left: 0.35rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.laptop-chin {
  height: 0.55rem;
  margin-top: 0.35rem;
  border-top: 1px solid var(--line);
  background: #0e1116;
}
.jobs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.job {
  display: flex;
  flex-direction: column;
  padding: 0.85rem;
  border: 1px solid var(--line);
  background: var(--panel);
}
.job p { color: var(--muted); font-size: 0.88rem; }
.job .price { margin: 0.6rem 0 0.4rem; color: var(--cyan); font-weight: 700; font-size: 1.02rem; }
.job .cta { margin-top: auto; }
.skip { margin-top: 0.75rem; color: var(--muted); font-size: 0.8rem; }
.phone-jobs { display: none; }
.phone-job {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  background: var(--panel);
  color: inherit;
  text-decoration: none;
}
.phone-job b { display: block; font-size: 1.02rem; }
.phone-job span { color: var(--cyan); font-weight: 700; white-space: nowrap; }
.workbench {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
}
.wb-head, .wb-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.wb-foot { border-bottom: 0; border-top: 1px solid var(--line); text-transform: none; letter-spacing: 0; }
.wb-foot a { text-decoration: none; }
.pipe {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.pipe-node {
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--line);
  background: var(--panel-2);
}
.pipe-id { display: block; color: var(--cyan); font-size: 0.64rem; letter-spacing: 0.08em; }
.pipe-node b { display: block; font-size: 0.82rem; }
.pipe-node span { color: var(--muted); font-size: 0.74rem; }
.grid-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.grid-table th, .grid-table td {
  padding: 0.4rem 0.55rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.grid-table th {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--soft);
}
.grid-table td.num { font-variant-numeric: tabular-nums; font-family: "IBM Plex Mono", monospace; }
.tag {
  display: inline-block;
  padding: 0.05rem 0.35rem;
  border: 1px solid var(--line);
  color: var(--ok);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.tag.park { color: var(--warn); }
.agent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.8rem;
  padding: 0.45rem 0.6rem;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 0.75rem;
}
.agent-strip b { color: var(--ink); }
main { padding: 0.35rem 0 0; }
section { scroll-margin-top: 0.6rem; }
section + section { margin-top: 1.4rem; padding-top: 1.15rem; border-top: 1px solid var(--line); }
.notice {
  margin-top: 0.55rem;
  padding: 0.5rem 0.65rem;
  border-left: 2px solid var(--gold);
  background: #16140f;
  color: #d5c9ad;
  font-size: 0.82rem;
}
.catalog { margin-top: 0.7rem; border: 1px solid var(--line); overflow-x: auto; }
.catalog .grid-table { min-width: 42rem; }
.catalog .btn { min-height: 2rem; width: auto; }
.screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.7rem;
  max-width: 46rem;
}
.screen-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  color: inherit;
  text-decoration: none;
}
.screen-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--line); }
.screen-copy { padding: 0.55rem 0.6rem 0.65rem; }
.screen-copy p { color: var(--muted); font-size: 0.8rem; }
.screen-url { display: block; margin-top: 0.35rem; color: var(--cyan); font-size: 0.7rem; overflow-wrap: anywhere; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.7rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 0.7rem 0.7rem 0.75rem 2.5rem;
  border: 1px solid var(--line);
  background: var(--panel);
}
.step::before {
  position: absolute;
  top: 0.7rem;
  left: 0.6rem;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  counter-increment: step;
  content: counter(step);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  line-height: 1.35rem;
  text-align: center;
}
.step p { color: var(--muted); font-size: 0.85rem; }
.contact { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.6fr); gap: 0.75rem; align-items: start; }
form, .contact-card { padding: 0.85rem; border: 1px solid var(--line); background: var(--panel); }
label { display: block; margin: 0.55rem 0 0.2rem; font-size: 0.82rem; font-weight: 650; }
input, select, textarea {
  width: 100%;
  min-height: 2.4rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 5rem; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
.form-note { margin-top: 0.7rem; color: var(--muted); font-size: 0.8rem; }
.brief-ready {
  margin-top: 0.8rem;
  padding: 0.75rem;
  border: 1px solid var(--cyan);
  background: var(--soft);
}
.brief-ready textarea {
  min-height: 8rem;
  margin-top: 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}
.contact-card p { margin-top: 0.45rem; color: var(--muted); }
footer {
  margin-top: 1.5rem;
  padding: 0.9rem 0 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

/* Phone portrait: jobs + WhatsApp. No laptop chrome. */
@media (max-width: 959px) {
  :root { font-size: 16px; }
  .shell { padding-inline: 0.85rem; }
  .desk-only { display: none !important; }
  .phone-only { display: block !important; }
  .phone-only.cta { display: flex !important; }
  .phone-jobs { display: grid !important; gap: 0.5rem; margin-top: 0.85rem; }
  .laptop, .agent-strip, .facts, #catalog, #work { display: none !important; }
  .hero { grid-template-columns: 1fr; padding: 0.85rem 0 0.4rem; }
  .nav-links a:nth-child(n+4) { display: none; }
  h1 { font-size: 1.85rem; }
  .lede { font-size: 1.02rem; }
  .jobs { display: none; }
  .btn { min-height: 2.85rem; width: 100%; }
  .cta .btn { flex: 1 1 10rem; width: auto; }
  .steps, .contact, .form-grid { grid-template-columns: 1fr; }
  .topbar { padding: 0.4rem 0; }
}

/* Phone landscape: three prices in a row, skip the demo. */
@media (orientation: landscape) and (max-height: 520px) {
  .laptop, .facts, .agent-strip, #catalog, #proof, #work, #how { display: none !important; }
  .desk-only { display: none !important; }
  .phone-only { display: block !important; }
  .phone-only.cta { display: flex !important; }
  .phone-jobs { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .jobs { display: none; }
  h1 { font-size: 1.25rem; margin: 0.2rem 0 0.3rem; }
  .hero { padding: 0.35rem 0; }
  .btn { min-height: 2.3rem; }
  .shell { padding-inline: 0.6rem; }
}

/* Laptop / large tablet landscape: keep the pipeline. */
@media (min-width: 960px) {
  :root { font-size: 14px; }
  body {
    background-image:
      linear-gradient(to right, rgba(42, 48, 56, .28) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(42, 48, 56, .16) 1px, transparent 1px);
    background-size: 4.5rem 4.5rem;
    background-attachment: fixed;
  }
}
