/*
 * vast-host-waitlist.css — 27th distinct flavor: garage-workshop-pegboard.
 *
 * Visual language: warm wood-grain background, dark-painted steel
 * pegboard with peg-holes, amber industrial signage (40-W incandescent
 * "OPEN" feel), Chakra Petch for the signs, Familjen Grotesk
 * for prose, IBM Plex Mono for technical labels.
 *
 * The page reads like the wall of a workbench: a sign over the door,
 * an amber-lit dashboard panel, three illustrated steps, a tag wall
 * of risk + reward labels, and a screwed-down FAQ card grid.
 *
 * Contrast: amber #d9a23a + cream #ece2c8 on dark #1c1208 wood reads at
 * ~9-12:1 (AAA on body text). The signage uses amber inside dark
 * cells for shop-window feel.
 */

:root {
  --pb-wood-dark:    #1c1208;
  --pb-wood:         #2b1d10;
  --pb-wood-warm:    #352617;
  --pb-wood-light:   #56401e;
  --pb-board-dark:   #161109;
  --pb-board:        #1f1810;
  --pb-board-line:   #2a2218;
  --pb-cream:        #ece2c8;
  --pb-cream-warm:   #f3e9cf;
  --pb-amber:        #d9a23a;
  --pb-amber-bright: #f3c75e;
  --pb-amber-deep:   #a87526;
  --pb-green:        #58c46d;
  --pb-green-soft:   #8be29c;
  --pb-red:          #d96249;
  --pb-blue:         #6aa3c4;
  --pb-rust:         #a2683f;
  --pb-rust-deep:    #7d4c2c;
  --pb-ink:          #e9dab2;
  --pb-ink-mute:     #9a8b6b;
  --pb-radius:       3px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--pb-wood-dark);
  color: var(--pb-cream);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  min-height: 100vh;
}

/* wood-grain backdrop — narrow vertical stripes */
body.pb-body {
  background:
    repeating-linear-gradient(
      90deg,
      var(--pb-wood-dark) 0px,
      var(--pb-wood) 4px,
      var(--pb-wood-warm) 8px,
      var(--pb-wood) 12px,
      var(--pb-wood-dark) 18px
    ),
    radial-gradient(circle at 60% 12%, rgba(217,162,58,0.06), transparent 36%);
  padding: 22px 18px 28px;
}

a { color: var(--pb-amber); text-decoration: none; }
a:hover, a:focus { color: var(--pb-amber-bright); text-decoration: underline; }

/* ===== HEADER ===== */

.pb-header {
  max-width: 1200px;
  margin: 0 auto 22px;
}

.pb-header-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* the amber "RENT YOUR IDLE GPU" garage sign */
.pb-sign {
  display: flex;
  align-items: center;
  gap: 14px;
  background:
    linear-gradient(180deg, #221708 0%, var(--pb-board-dark) 60%, #110a05 100%);
  border: 2px solid var(--pb-amber-deep);
  border-radius: 6px;
  padding: 12px 18px 10px;
  box-shadow:
    inset 0 0 18px rgba(217,162,58,0.25),
    0 0 0 1px rgba(0,0,0,0.4),
    0 6px 22px rgba(0,0,0,0.55);
  position: relative;
  flex: 1 1 460px;
  max-width: 560px;
}
.pb-sign::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(217,162,58,0.18);
  border-radius: 4px;
  pointer-events: none;
}
.pb-sign-arrow {
  font-family: "Chakra Petch", "IBM Plex Mono", monospace;
  font-size: 30px;
  color: var(--pb-amber);
  text-shadow: 0 0 6px rgba(217,162,58,0.6);
}
.pb-sign-text { display: flex; flex-direction: column; gap: 2px; }
.pb-sign-line1 {
  font-family: "Chakra Petch", "IBM Plex Mono", monospace;
  font-size: 22px;
  color: var(--pb-amber-bright);
  letter-spacing: 0.1em;
  text-shadow: 0 0 8px rgba(243,199,94,0.45);
}
.pb-sign-line2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--pb-amber-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pb-sign-lamp {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pb-amber-bright);
  box-shadow:
    0 0 14px var(--pb-amber-bright),
    0 0 4px #ffffff;
  margin-left: auto;
  animation: pb-lamp-pulse 4s ease-in-out infinite;
}
@keyframes pb-lamp-pulse {
  0%, 100% { opacity: 0.9; }
  50%      { opacity: 0.55; }
}

/* status bar — pegboard-mounted aluminium strip */
.pb-stat-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #2c2218 0%, #1d160c 100%);
  border: 1px solid var(--pb-wood-light);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--pb-cream);
  flex: 1 1 380px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.pb-stat-k {
  color: var(--pb-ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
}
.pb-stat-v { color: var(--pb-cream-warm); }
.pb-stat-amber { color: var(--pb-amber-bright); font-weight: 600; }
.pb-sep { color: var(--pb-wood-light); }

/* ===== MAIN ===== */

.pb-main {
  max-width: 1200px;
  margin: 0 auto;
}

/* shared h2 — workshop placard */
.pb-h2 {
  font-family: "Chakra Petch", "IBM Plex Mono", monospace;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pb-amber);
  margin: 0 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px dashed var(--pb-amber-deep);
  text-shadow: 0 0 6px rgba(217,162,58,0.18);
}

.pb-mono {
  font-family: "IBM Plex Mono", monospace;
  background: var(--pb-board-dark);
  color: var(--pb-amber-bright);
  padding: 1px 6px;
  border-radius: var(--pb-radius);
  font-size: 12.5px;
  border: 1px solid var(--pb-wood-light);
}

.pb-amber { color: var(--pb-amber-bright); font-weight: 600; }

/* ===== HERO ===== */

.pb-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  background:
    radial-gradient(circle at 10% 10%, #2a3a18 0%, transparent 6%),
    radial-gradient(circle at 90% 10%, #2a3a18 0%, transparent 6%),
    radial-gradient(circle at 10% 90%, #2a3a18 0%, transparent 6%),
    radial-gradient(circle at 90% 90%, #2a3a18 0%, transparent 6%),
    linear-gradient(180deg, var(--pb-board) 0%, var(--pb-board-dark) 100%);
  border: 1px solid var(--pb-wood-light);
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
  /* faint peg-hole grid as background pattern */
  background-image:
    radial-gradient(circle at 16px 16px, rgba(217,162,58,0.06) 0 1.4px, transparent 2px),
    linear-gradient(180deg, var(--pb-board) 0%, var(--pb-board-dark) 100%);
  background-size: 28px 28px, 100% 100%;
}
.pb-hero-l { display: flex; flex-direction: column; gap: 10px; }

.pb-h1 {
  font-family: "Chakra Petch", "IBM Plex Mono", monospace;
  font-size: 36px;
  color: var(--pb-cream-warm);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-shadow: 0 1px 0 rgba(0,0,0,0.6);
}
.pb-h1-lead { color: var(--pb-cream-warm); display: block; }
.pb-h1-trail { color: var(--pb-amber); display: block; }

.pb-h1-sub {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 15px;
  color: var(--pb-ink);
  margin: 0 0 8px;
  max-width: 620px;
}

.pb-fixture {
  background: rgba(217,98,73,0.07);
  border: 1px dashed var(--pb-red);
  border-radius: var(--pb-radius);
  padding: 8px 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--pb-cream);
  line-height: 1.5;
  margin: 0;
}

.pb-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.pb-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--pb-amber) 0%, var(--pb-amber-deep) 100%);
  border: 1.5px solid var(--pb-amber-bright);
  border-radius: 4px;
  padding: 10px 16px;
  color: #261701;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 14px rgba(217,162,58,0.35),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: filter 120ms ease, transform 80ms ease;
}
.pb-cta-primary:hover, .pb-cta-primary:focus {
  filter: brightness(1.1);
  text-decoration: none;
  color: #1a0f00;
  transform: translateY(-1px);
}
.pb-cta-bolt, .pb-cta-arrow, .pb-cta-icon { font-weight: 700; }

.pb-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--pb-rust);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--pb-cream);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.pb-cta-secondary:hover, .pb-cta-secondary:focus {
  border-color: var(--pb-amber);
  color: var(--pb-amber-bright);
  text-decoration: none;
}

/* HERO right — amber dashboard display */
.pb-hero-r { display: flex; align-items: stretch; justify-content: center; }
.pb-display {
  width: 100%;
  background: linear-gradient(180deg, #221708 0%, #110a05 100%);
  border: 2px solid var(--pb-amber-deep);
  border-radius: 6px;
  padding: 14px 14px 10px;
  box-shadow:
    inset 0 0 22px rgba(217,162,58,0.18),
    0 6px 18px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
}
.pb-display-edge {
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--pb-amber), transparent);
  margin-bottom: 10px;
}
.pb-display-body { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.pb-display-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  padding: 2px 6px;
  border-bottom: 1px dashed rgba(217,162,58,0.15);
}
.pb-display-row:last-child { border-bottom: none; }
.pb-display-k { color: var(--pb-ink-mute); letter-spacing: 0.1em; text-transform: uppercase; }
.pb-display-v { color: var(--pb-cream-warm); font-weight: 500; }
.pb-display-amber { color: var(--pb-amber-bright); font-weight: 600; }
.pb-display-green { color: var(--pb-green-soft); font-weight: 500; }
.pb-led-amber {
  color: var(--pb-amber-bright);
  text-shadow: 0 0 6px rgba(243,199,94,0.55);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.pb-display-foot {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--pb-amber-deep);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  color: var(--pb-ink-mute);
  text-align: right;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== STEPS ===== */

.pb-steps {
  margin: 0 0 24px;
  background: var(--pb-board);
  border: 1px solid var(--pb-wood-light);
  border-radius: 6px;
  padding: 22px 24px;
  background-image:
    radial-gradient(circle at 18px 18px, rgba(217,162,58,0.05) 0 1.6px, transparent 2.2px),
    linear-gradient(180deg, var(--pb-board) 0%, var(--pb-board-dark) 100%);
  background-size: 32px 32px, 100% 100%;
}
.pb-step-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.pb-step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  background:
    linear-gradient(180deg, var(--pb-wood-warm) 0%, var(--pb-wood) 100%);
  border: 1.5px solid var(--pb-rust);
  border-radius: 5px;
  padding: 14px 16px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 4px 10px rgba(0,0,0,0.35);
}
.pb-step-tag {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--pb-board-dark);
  border: 1px solid var(--pb-amber-deep);
  border-radius: 4px;
  padding: 8px 8px 6px;
  gap: 4px;
}
.pb-step-n {
  font-family: "Chakra Petch", "IBM Plex Mono", monospace;
  font-size: 30px;
  color: var(--pb-amber-bright);
  letter-spacing: 0.06em;
  text-shadow: 0 0 6px rgba(217,162,58,0.4);
}
.pb-step-tool {
  font-size: 22px;
  color: var(--pb-cream);
}
.pb-step-body { display: flex; flex-direction: column; gap: 6px; }
.pb-step-h {
  font-family: "IBM Plex Mono", monospace;
  font-size: 16px;
  color: var(--pb-amber-bright);
  margin: 0 0 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pb-step-body p {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14px;
  color: var(--pb-cream);
  margin: 0;
}
.pb-step-kit {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--pb-ink-mute);
  margin: 4px 0 0;
  letter-spacing: 0.05em;
}
.pb-step-kit .pb-mono { background: var(--pb-board); }

/* ===== ARB CALLBACK ===== */

.pb-arb {
  margin: 0 0 24px;
  background: var(--pb-board);
  border: 1px solid var(--pb-wood-light);
  border-radius: 6px;
  padding: 22px 24px;
}
.pb-arb-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 22px;
}
.pb-arb-body {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14.5px;
  color: var(--pb-cream);
  margin: 0 0 8px;
}
.pb-arb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pb-arb-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--pb-cream);
}
.pb-arb-dot { color: var(--pb-amber); }
.pb-arb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 14px;
  background: var(--pb-board-dark);
  border: 1px solid var(--pb-amber);
  border-radius: 4px;
  color: var(--pb-amber-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  text-decoration: none;
  width: max-content;
}
.pb-arb-link:hover, .pb-arb-link:focus {
  background: var(--pb-amber-deep);
  color: #1a0f00;
  text-decoration: none;
}
.pb-arb-link-arrow { font-weight: 700; }

/* tag wall — colored labels stuck to the pegboard */
.pb-tag-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  padding: 12px;
  background:
    radial-gradient(circle at 14px 14px, rgba(0,0,0,0.4) 0 1.4px, transparent 2px),
    linear-gradient(180deg, var(--pb-wood-warm) 0%, var(--pb-wood) 100%);
  background-size: 28px 28px, 100% 100%;
  border: 1px solid var(--pb-rust-deep);
  border-radius: 5px;
}
.pb-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid currentColor;
  background: rgba(0,0,0,0.35);
}
.pb-tag-amber { color: var(--pb-amber-bright); border-color: var(--pb-amber); }
.pb-tag-amber.pb-tag-strong {
  background: var(--pb-amber);
  color: #1c1208;
  border-color: var(--pb-amber-bright);
  font-weight: 700;
}
.pb-tag-green { color: var(--pb-green-soft); }
.pb-tag-red   { color: var(--pb-red); }
.pb-tag-blue  { color: var(--pb-blue); }

/* ===== FAQ ===== */

.pb-faq {
  margin: 0 0 24px;
  background: var(--pb-board);
  border: 1px solid var(--pb-wood-light);
  border-radius: 6px;
  padding: 22px 24px;
}
.pb-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pb-faq-card {
  background:
    linear-gradient(180deg, var(--pb-wood-warm) 0%, var(--pb-wood) 100%);
  border: 1px solid var(--pb-rust);
  border-radius: 5px;
  padding: 12px 14px;
  position: relative;
}
.pb-faq-card::before, .pb-faq-card::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--pb-amber);
  border: 1px solid #1c1208;
  border-radius: 50%;
  top: 6px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5);
}
.pb-faq-card::before { left: 6px; }
.pb-faq-card::after  { right: 6px; }
.pb-faq-h {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13.5px;
  color: var(--pb-amber-bright);
  margin: 4px 0 6px;
  letter-spacing: 0.04em;
}
.pb-faq-card p {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 13.5px;
  color: var(--pb-cream);
  margin: 0;
}

/* ===== BOTTOM CTA ===== */

.pb-bottom {
  margin: 0 0 24px;
  background:
    radial-gradient(circle at 18px 18px, rgba(0,0,0,0.35) 0 1.4px, transparent 2px),
    linear-gradient(180deg, #2a1d10 0%, #1c1208 100%);
  background-size: 32px 32px, 100% 100%;
  border: 1px solid var(--pb-amber-deep);
  border-radius: 6px;
  padding: 22px 24px 24px;
  text-align: center;
}
.pb-bottom-body {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14.5px;
  color: var(--pb-cream);
  margin: 0 auto 12px;
  max-width: 720px;
}
.pb-bottom-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--pb-amber) 0%, var(--pb-amber-deep) 100%);
  border: 1.5px solid var(--pb-amber-bright);
  border-radius: 4px;
  padding: 12px 22px;
  color: #1a0f00;
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 22px rgba(217,162,58,0.45),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: filter 120ms ease, transform 80ms ease;
}
.pb-bottom-mail:hover, .pb-bottom-mail:focus {
  filter: brightness(1.1);
  text-decoration: none;
  color: #1a0f00;
  transform: translateY(-1px);
}
.pb-bottom-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--pb-ink-mute);
  margin: 10px 0 0;
  letter-spacing: 0.04em;
}

/* ===== FOOTER ===== */

.pb-foot {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2c2218 0%, #1d160c 100%);
  border: 1px solid var(--pb-wood-light);
  border-radius: 5px;
  margin-top: 6px;
}
.pb-foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 22px 10px;
  flex-wrap: wrap;
  gap: 10px;
}
.pb-foot-l, .pb-foot-r {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--pb-cream);
  flex-wrap: wrap;
}
.pb-foot-mark { font-weight: 600; color: var(--pb-amber); letter-spacing: 0.08em; }
.pb-foot-name { color: var(--pb-cream); }
.pb-foot-muted { color: var(--pb-ink-mute); }

/* responsive */
@media (max-width: 980px) {
  .pb-hero, .pb-arb-grid, .pb-faq-grid { grid-template-columns: 1fr; }
  .pb-hero-r { justify-content: center; }
}

@media (max-width: 620px) {
  body.pb-body { padding: 14px 10px 22px; }
  .pb-h1 { font-size: 28px; }
  .pb-sign-line1 { font-size: 18px; }
  .pb-step { grid-template-columns: 64px 1fr; }
  .pb-step-n { font-size: 24px; }
  .pb-step-tool { font-size: 18px; }
}
