/* LabPilot marketing site — shared theme (matches landing.html) */
:root {
  --blurple: #635BFF;
  --blurple-dark: #5147e5;
  --blurple-soft: #f0efff;
  --cyan: #00d0ff;
  --ink: #1a1f36;
  --deep: #0f1330;
  --slate: #4f566b;
  --muted: #697386;
  --faint: #a3acb9;
  --line: #e3e8ee;
  --cloud: #f6f8fa;
  --green: #0e6245;
  --green-bg: #d6f2e3;
  --shadow-sm: 0 1px 2px rgba(26,31,54,.06), 0 1px 1px rgba(26,31,54,.04);
  --shadow-md: 0 4px 12px rgba(26,31,54,.08), 0 1px 3px rgba(26,31,54,.06);
  --shadow-lg: 0 24px 60px rgba(26,31,54,.16), 0 8px 20px rgba(26,31,54,.08);
  --display: 'Inter Tight', 'Inter', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.55; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 17px; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #7a73ff, #635BFF 55%, #4f46e5);
  display: grid; place-items: center; color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 2px 6px rgba(99,91,255,.4);
}
.brand-mark svg { width: 16px; height: 16px; }
.nav-links { display: flex; gap: 24px; font-size: 13.5px; font-weight: 500; color: var(--slate); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-cta .ghost { font-size: 13.5px; font-weight: 600; color: var(--slate); }
.nav-cta .ghost:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blurple); color: #fff; border: 0; cursor: pointer;
  font-weight: 600; font-size: 13.5px; padding: 9px 17px; border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), var(--shadow-sm);
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--blurple-dark); }
.btn:active { transform: translateY(1px); }
.btn.big { font-size: 15px; padding: 13px 24px; border-radius: 10px; }
.btn.inverse { background: #fff; color: var(--ink); }
.btn.inverse:hover { background: #eef0f4; }

/* ── Page hero ── */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1000px 460px at 8% -20%, rgba(99,91,255,.13), transparent 60%),
    radial-gradient(800px 380px at 100% -10%, rgba(0,208,255,.10), transparent 55%),
    #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero-inner { padding: 70px 0 56px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blurple); background: var(--blurple-soft);
  padding: 6px 13px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 99px; background: var(--blurple); }
.page-hero h1 {
  font-family: var(--display); font-weight: 800; font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.06; letter-spacing: -.03em; margin-top: 18px;
}
.page-hero .lead { font-size: 16.5px; color: var(--slate); margin-top: 16px; max-width: 560px; }

/* ── Content ── */
.content { padding: 64px 0 88px; }
.content-narrow { max-width: 760px; }
.updated { font-size: 12.5px; color: var(--faint); margin-bottom: 30px; }

/* Prose / legal */
.prose h2 { font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 16px; font-weight: 700; margin: 26px 0 8px; color: var(--ink); }
.prose p { font-size: 15px; color: var(--slate); margin: 12px 0; }
.prose ul { margin: 12px 0 12px 4px; padding-left: 20px; }
.prose li { font-size: 15px; color: var(--slate); margin: 7px 0; }
.prose a { color: var(--blurple); font-weight: 600; }
.prose a:hover { color: var(--blurple-dark); }
.prose code { font-family: var(--mono); font-size: 13px; background: var(--blurple-soft); color: var(--blurple); padding: 2px 7px; border-radius: 5px; }
.prose strong { color: var(--ink); font-weight: 700; }
.note {
  display: flex; gap: 12px; background: var(--cloud); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px; margin: 26px 0; font-size: 13.5px; color: var(--slate);
}
.note svg { width: 18px; height: 18px; color: var(--blurple); flex-shrink: 0; margin-top: 1px; }

/* Docs table of contents / cards */
.doc-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.doc-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm);
  transition: box-shadow .18s, transform .18s, border-color .18s; display: block;
}
.doc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #d5dae2; }
.doc-card .di { width: 38px; height: 38px; border-radius: 10px; background: var(--blurple-soft); color: var(--blurple); display: grid; place-items: center; margin-bottom: 14px; }
.doc-card .di svg { width: 18px; height: 18px; }
.doc-card h3 { font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.doc-card p { font-size: 13px; color: var(--slate); margin-top: 6px; }
.doc-steps { counter-reset: step; display: grid; gap: 14px; margin-top: 8px; }
.doc-step { display: flex; gap: 15px; align-items: flex-start; }
.doc-step .n {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px; background: var(--blurple-soft);
  color: var(--blurple); font-weight: 700; font-size: 13px; display: grid; place-items: center;
  font-family: var(--mono);
}
.doc-step h3 { font-size: 15px; font-weight: 700; margin: 3px 0 2px; }
.doc-step p { font-size: 13.5px; color: var(--slate); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; box-shadow: var(--shadow-sm); margin-bottom: 16px; display: flex; gap: 14px; align-items: flex-start; }
.contact-card .ci { width: 40px; height: 40px; border-radius: 10px; background: var(--blurple-soft); color: var(--blurple); display: grid; place-items: center; flex-shrink: 0; }
.contact-card .ci svg { width: 19px; height: 19px; }
.contact-card h3 { font-size: 15px; font-weight: 700; }
.contact-card p { font-size: 13.5px; color: var(--slate); margin-top: 3px; }
.contact-card a { color: var(--blurple); font-weight: 600; }
.form { border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: var(--shadow-sm); }
.form .row { margin-bottom: 16px; }
.form label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form input, .form textarea, .form select {
  width: 100%; font: inherit; font-size: 14px; color: var(--ink);
  border: 1px solid var(--line); border-radius: 9px; padding: 10px 13px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: 0; border-color: var(--blurple); box-shadow: 0 0 0 3px rgba(99,91,255,.15);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
.form .fine { font-size: 12px; color: var(--faint); margin-top: 12px; text-align: center; }

/* ── Footer ── */
footer { border-top: 1px solid var(--line); padding: 34px 0; }
.foot-inner { display: flex; align-items: center; gap: 20px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
.foot-inner .brand { font-size: 14px; }
.foot-inner .brand-mark { width: 24px; height: 24px; border-radius: 6px; }
.foot-inner .brand-mark svg { width: 13px; height: 13px; }
.foot-links { margin-left: auto; display: flex; gap: 20px; }
.foot-links a:hover { color: var(--ink); }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .doc-cards, .contact-grid { grid-template-columns: 1fr; }
}
