/* Custom build order page */
.cbo { position: relative; z-index: 1; padding: 40px 0 60px; }
.cbo .container { max-width: 760px; }

.cbo-hero { padding-top: 40px; padding-bottom: 20px; }
.cbo-kicker { color: var(--green-dim); font-size: 13px; letter-spacing: .04em; }
.cbo-hero h1 { color: var(--white); font-size: clamp(28px, 5vw, 42px); line-height: 1.15; margin: 12px 0 14px; }
.cbo-sub { color: var(--text); font-size: 16px; line-height: 1.6; max-width: 56ch; }
.cbo-price-row { display: flex; align-items: center; gap: 14px; margin: 26px 0 22px; }
.cbo-price { color: var(--green); font-size: 44px; font-weight: 800; line-height: 1; }
.cbo-price-note { color: var(--text-dim); font-size: 12px; line-height: 1.4; text-transform: uppercase; letter-spacing: .06em; }

/* Bright fill, near-black label; set on :link/:visited so the global link colour cannot win */
.cbo-btn, a.cbo-btn:link, a.cbo-btn:visited {
  display: inline-block; font: inherit; font-size: 15px; font-weight: 700; cursor: pointer;
  background: var(--green); color: #001a06; border: 1px solid var(--green);
  padding: 13px 22px; border-radius: 6px; text-decoration: none;
}
.cbo-btn:hover { background: var(--green-dim); color: #001a06; }
.cbo-btn:focus-visible, .cbo-btn-ghost:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.cbo-btn-ghost {
  font: inherit; font-size: 14px; cursor: pointer; background: transparent;
  color: var(--green); border: 1px solid var(--green-muted); padding: 12px 18px; border-radius: 6px;
}
.cbo-btn-ghost:hover { border-color: var(--green); }

.cbo-section { padding-top: 34px; }
.cbo-who { display: grid; gap: 8px; max-width: 60ch; }
.cbo-who p { color: var(--text); font-size: 15px; line-height: 1.55; margin: 0; }
.cbo-who p::before { content: "> "; color: var(--green-dim); }
.cbo-label { color: var(--text-dim); opacity: .8; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.cbo-label-gap { margin-top: 22px; }

.cbo-grid {
  display: grid; grid-template-columns: max-content 1fr; gap: 10px 20px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px;
}
.cbo-grid dt { color: var(--green); font-weight: 600; font-size: 14px; }
.cbo-grid dd { color: var(--text); font-size: 14px; line-height: 1.5; }

.cbo-steps { list-style: none; display: grid; gap: 10px; }
.cbo-steps li { display: flex; align-items: center; gap: 14px; color: var(--text); font-size: 15px; line-height: 1.5; }
.cbo-step-n {
  flex: 0 0 28px; height: 28px; border-radius: 50%; border: 1px solid var(--green-muted);
  color: var(--green); display: grid; place-items: center; font-size: 13px; font-weight: 700;
}

.cbo-list { list-style: none; display: grid; gap: 8px; }
.cbo-list li { color: var(--text); font-size: 15px; line-height: 1.5; padding-left: 24px; position: relative; }
.cbo-yes li::before { content: "+"; color: var(--green); position: absolute; left: 4px; font-weight: 700; }
.cbo-no li::before { content: "~"; color: var(--text-muted); position: absolute; left: 4px; font-weight: 700; }

.cbo-form, .cbo-review {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 22px;
  display: grid; gap: 16px;
}
.cbo-form[hidden], .cbo-review[hidden], .cbo-error[hidden] { display: none; }
.cbo-field { display: grid; gap: 6px; border: 0; min-width: 0; }
.cbo-field label, .cbo-field legend { color: var(--white); font-size: 13px; font-weight: 600; }
.cbo-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cbo-form input[type="text"], .cbo-form input[type="email"], .cbo-form textarea, .cbo-form select {
  font: inherit; font-size: 15px; color: var(--white); background: var(--bg-terminal);
  border: 1px solid var(--border); border-radius: 6px; padding: 11px 12px; width: 100%; line-height: 1.5;
}
.cbo-form input:focus, .cbo-form textarea:focus, .cbo-form select:focus { outline: none; border-color: var(--green); }
.cbo-form ::placeholder { color: var(--text-muted); }
.cbo-fit { gap: 10px; }
.cbo-fit legend { margin-bottom: 8px; }
.cbo-fit label { color: var(--text); font-weight: 400; font-size: 14px; display: flex; gap: 10px; align-items: center; }
.cbo-fit input { accent-color: var(--green); width: 18px; height: 18px; }
.cbo-error { color: var(--red); font-size: 14px; }

.cbo-tier { color: var(--white); font-size: 15px; line-height: 1.5; }
.cbo-tier strong { color: var(--green); }
.cbo-brief {
  white-space: pre-wrap; word-break: break-word; font: inherit; font-size: 13px; line-height: 1.6;
  color: var(--text); background: var(--bg-terminal); border: 1px solid var(--border); border-radius: 6px;
  padding: 14px; max-height: 320px; overflow: auto;
}
.cbo-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cbo-small { color: var(--text-dim); font-size: 12px; line-height: 1.5; }

@media (max-width: 560px) {
  .cbo { padding-top: 20px; }
  .cbo-field-row { grid-template-columns: 1fr; }
  .cbo-form, .cbo-review { padding: 16px; }
  .cbo-hero .cbo-btn, .cbo-actions > * { width: 100%; text-align: center; }
  .cbo-grid { grid-template-columns: 1fr; gap: 2px; }
  .cbo-grid dd { margin-bottom: 10px; }
}
.cbo-pay-row { margin-top: 14px; color: var(--text); font-size: 15px; }
.cbo-pay:link, .cbo-pay:visited { color: var(--green); font-weight: 600; }

/* Before / after example */
.cbo-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cbo-ba-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 16px 18px; }
.cbo-ba-after { border-color: var(--green-muted); }
.cbo-ba-tag { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 10px; color: var(--text-muted); }
.cbo-ba-after .cbo-ba-tag { color: var(--green); }
.cbo-ba ol { list-style: none; display: grid; gap: 6px; }
.cbo-ba li { color: var(--text); font-size: 14px; line-height: 1.5; }
.cbo-ba-before li { color: var(--text-dim); }
.cbo-flow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 12px 0 10px; }
.cbo-flow-step { background: var(--bg-terminal); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; }
.cbo-flow-h { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.cbo-flow dl { display: grid; grid-template-columns: max-content 1fr; gap: 4px 12px; }
.cbo-flow dt { color: var(--green); font-size: 13px; }
.cbo-flow dd, .cbo-flow li { color: var(--text); font-size: 13px; line-height: 1.5; }
.cbo-flow ul { list-style: none; display: grid; gap: 4px; }
.cbo-flow li::before { content: "- "; color: var(--green-dim); }

/* 3 steps */
.cbo-steps3 { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cbo-steps3 li { display: flex; gap: 12px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 14px; }
.cbo-step-h { color: var(--white); font-size: 14px; font-weight: 600; line-height: 1.4; }
.cbo-step-t { color: var(--text-dim); font-size: 13px; line-height: 1.5; margin-top: 4px; }

/* Proof */
.cbo-rating { color: var(--text); font-size: 15px; margin-bottom: 12px; }
.cbo-rating b { color: var(--green); }
.cbo-quotes { display: grid; gap: 10px; margin-bottom: 10px; }
.cbo-quotes blockquote { background: var(--bg-card); border-left: 2px solid var(--green-muted); border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 0; }
.cbo-quotes p { color: var(--text); font-size: 14px; line-height: 1.55; }
.cbo-quotes cite { display: block; color: var(--text-dim); font-size: 12px; font-style: normal; margin-top: 6px; }
.cbo-cta-row { margin-top: 18px; }

/* Real example */
.cbo-demo-tag { color: var(--text-dim); font-size: 13px; margin-bottom: 12px; }
.cbo-video { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 12 / 7; background: #0a0f0a; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 8px; }
.cbo-code { overflow-x: auto; background: var(--bg-terminal); border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; margin-bottom: 8px; }
.cbo-code code { color: var(--green); font-size: 13px; white-space: pre; }

@media (max-width: 560px) {
  .cbo-ba, .cbo-flow, .cbo-steps3 { grid-template-columns: 1fr; }
  .cbo-cta-row .cbo-btn { width: 100%; text-align: center; }
  .cbo-code code { white-space: pre-wrap; word-break: break-all; }
}
