/* ============================================================
   BuilderLab landing page.

   Deliberately restrained: flat surfaces, hairline borders, one accent.
   Everything is namespaced `bl-` so it can't collide with styles.css.

   Rules this file follows:
   - No glow halos, no backdrop blur, no floating blobs.
   - Lime is for ONE primary action per section + small labels. Headings are white.
   - One radius scale (14px cards / 10px small / 999px pills), one spacing scale.
   - Sentence-case headings. No per-word colour highlighting.
   ============================================================ */

.bl {
  --ink: #f4f7f5;
  --ink-2: #aab4b0;
  --ink-3: #79837f;
  --line: rgba(255, 255, 255, .08);
  --line-2: rgba(255, 255, 255, .13);
  --panel: #0a0e0c;
  --panel-2: #0d1210;
  --acc: #c7f000;
  --acc-ink: #0a0d0c;

  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: "Inter", system-ui, sans-serif;
}

/* kill the ambient blobs on this page only — they muddy every surface */
body.bl-page .mesh { display: none; }
body.bl-page { background: #050706; }

.bl section { padding: 72px 0; border-top: 1px solid var(--line); }
.bl section:first-child { border-top: 0; }

/* ---------- shared type ---------- */
.bl-eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--acc); margin: 0 0 14px;
}
/* styles.css sets a global `h2 { text-transform: uppercase }` and `h1 { display: flex }`
   for the app chrome — both have to be undone here or every heading shouts. */
.bl h1, .bl h2, .bl h3 { display: block; text-transform: none; }
.bl h2 {
  font-family: "Sora", "Inter", sans-serif; font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; letter-spacing: -.02em;
  color: var(--ink); margin: 0 0 14px;
}
.bl h3 {
  font-family: "Sora", "Inter", sans-serif; font-weight: 700; font-size: 17px;
  line-height: 1.3; color: var(--ink); margin: 0 0 6px; letter-spacing: -.01em;
}
.bl p { color: var(--ink-2); font-size: 15.5px; line-height: 1.65; margin: 0 0 14px; }
.bl .bl-lead { font-size: 17px; max-width: 60ch; }
/* scoped to prose only — a blanket `.bl a` would repaint button labels lime-on-lime */
.bl p a, .bl dd a, .bl-steps a { color: var(--acc); }

/* ---------- buttons ---------- */
.bl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-size: 15px; font-weight: 700; text-decoration: none; cursor: pointer;
  padding: 13px 24px; border-radius: 10px; border: 1px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
}
.bl .bl-btn-primary, a.bl-btn-primary { background: var(--acc); color: var(--acc-ink); }
.bl-btn-primary:hover { background: #d8ff28; }
.bl .bl-btn-ghost, a.bl-btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.bl-btn-ghost:hover { border-color: rgba(255, 255, 255, .28); }

/* ---------- hero ---------- */
.bl-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.bl-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.bl-chip {
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line);
  border-radius: 7px; padding: 4px 9px;
}
.bl-hero { padding: 64px 0 72px !important; }
.bl-hero h1 {
  font-family: "Sora", "Inter", sans-serif; font-weight: 700;
  font-size: clamp(36px, 5.6vw, 58px); line-height: 1.06; letter-spacing: -.03em;
  color: var(--ink); margin: 0 0 20px; max-width: 15ch;
}
.bl-hero h1 em { font-style: normal; color: var(--acc); }
.bl-hero-sub { font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 54ch; margin: 0 0 32px; }
.bl-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.bl-hero-note { font-size: 13.5px; color: var(--ink-3); margin: 18px 0 0; }

/* ---------- credibility strip ---------- */
.bl-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.bl-strip > div { background: var(--panel); padding: 22px 24px; }
.bl-strip dt {
  font-size: 11.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px;
}
.bl-strip dd { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.bl-strip dd b { color: var(--ink); font-weight: 700; }

/* ---------- section head ---------- */
.bl-head { max-width: 62ch; margin-bottom: 32px; }
.bl-head p { margin-bottom: 0; }

/* ---------- tools ---------- */
.bl-tools { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bl-tool {
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px;
  padding: 24px; display: flex; flex-direction: column;
  transition: border-color .16s;
}
.bl-tool:hover { border-color: var(--line-2); }
.bl-tool-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.bl-tool-ic {
  width: 34px; height: 34px; flex: none; border-radius: 9px; display: grid; place-items: center;
  background: rgba(199, 240, 0, .09); border: 1px solid rgba(199, 240, 0, .22); color: var(--acc);
}
.bl-tag {
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; border: 1px solid var(--line-2); color: var(--ink-3);
  white-space: nowrap;
}
.bl-tag-pro { color: var(--acc); border-color: rgba(199, 240, 0, .3); }
.bl-tool p { font-size: 14.5px; margin: 0 0 16px; }
.bl-tool-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-3);
}
.bl-tool-foot b { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------- split (copy + panel) ---------- */
.bl-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bl-steps { list-style: none; margin: 22px 0 28px; padding: 0; counter-reset: st; }
.bl-steps li {
  counter-increment: st; position: relative; padding-left: 34px; margin-bottom: 16px;
}
.bl-steps li::before {
  content: counter(st); position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center;
  background: rgba(199, 240, 0, .1); border: 1px solid rgba(199, 240, 0, .26);
  color: var(--acc); font-size: 11.5px; font-weight: 700;
}
.bl-steps b { display: block; color: var(--ink); font-size: 14.5px; margin-bottom: 3px; }
.bl-steps span { color: var(--ink-2); font-size: 14px; line-height: 1.55; }

/* the one product mock — a single panel, no nested cards */
.bl-panel { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.bl-panel-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--panel-2);
}
.bl-panel-bar span {
  font-size: 11.5px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; color: var(--ink-3);
}
.bl-panel-bar b { font-size: 13px; color: var(--acc); font-variant-numeric: tabular-nums; }
.bl-panel-body { padding: 18px 16px; }
.bl-quote {
  font-size: 14px; line-height: 1.6; color: var(--ink-2); background: rgba(255, 255, 255, .03);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; margin: 0 0 16px;
}
.bl-rows { display: flex; flex-direction: column; gap: 11px; }
.bl-row { display: grid; grid-template-columns: 104px 1fr 30px; align-items: center; gap: 12px; }
.bl-row-l { font-size: 12.5px; color: var(--ink-2); }
.bl-row-t { height: 5px; border-radius: 999px; background: rgba(255, 255, 255, .07); overflow: hidden; }
.bl-row-t i { display: block; height: 100%; width: var(--w); background: var(--acc); border-radius: 999px; }
.bl-row-v { font-size: 13px; font-weight: 700; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.bl-panel-foot {
  margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line);
  font-size: 12.5px; color: var(--ink-3); display: flex; justify-content: space-between; gap: 10px;
}
.bl-panel-foot b { color: var(--ink); }

/* the prompt the user actually types */
.bl-quote-lg {
  font-size: 19px; line-height: 1.55; color: var(--ink); padding: 22px 24px; border-radius: 14px;
  border-left: 3px solid var(--acc);
}
.bl-quote-cap { font-size: 13.5px; color: var(--ink-3); margin: 12px 0 0; }

/* ---------- slim banner ---------- */
.bl-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 24px 28px;
}
.bl-banner-l { min-width: 0; }
.bl-banner h3 { margin-bottom: 5px; }
.bl-banner p { margin: 0; font-size: 14.5px; max-width: 66ch; }

/* ---------- closing CTA ---------- */
.bl-close { text-align: center; padding: 76px 0 88px !important; }
.bl-close h2 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.bl-close p { max-width: 52ch; margin-left: auto; margin-right: auto; margin-bottom: 28px; }
.bl-close .bl-hero-cta { justify-content: center; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .bl-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .bl-split { grid-template-columns: 1fr; gap: 36px; }
  .bl-tools { grid-template-columns: 1fr; }
  .bl-strip { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bl { padding: 0 18px; }
  .bl section { padding: 56px 0; }
  .bl-hero { padding: 52px 0 48px !important; }
  .bl-hero h1 { max-width: none; }
  .bl-hero-sub { font-size: 16.5px; }
  .bl-hero-cta { flex-direction: column; align-items: stretch; }
  .bl-btn { width: 100%; }
  .bl-close { padding: 56px 0 64px !important; }
  .bl-banner { padding: 20px; }
}
