/* lobellcom.css — Th1ngs brand / lobellcom overrides */

:root {
  --brand-primary: #4f46e5;
  --brand-secondary: #7c3aed;
  --brand-dark: #18181b;
}

/* Brand gradient accent */
.brand-gradient {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge pill */
.badge-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600; padding: .2em .65em;
  border-radius: 999px; background: var(--accent-light); color: var(--accent);
  border: 1px solid #c7d2fe; font-family: var(--font-mono);
}

/* Footer */
.doc-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 3rem;
  margin-left: var(--sidebar-w);
  color: var(--muted);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.doc-footer a { color: var(--muted); text-decoration: none; }
.doc-footer a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .doc-footer { margin-left: 0; padding: 1.5rem 1rem; }
}

/* ── Subscribe ── */
.subscribe-wrap {
  max-width: 480px;
  margin-top: 1.5rem;
}
.sib-form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 2.5rem 1.5rem;
  border: 2px dashed var(--border);
  border-radius: 12px;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

/* ── Floating contact button ── */
.fab-contact {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(79,70,229,.35);
  transition: background .15s, transform .15s, box-shadow .15s;
}
.fab-contact:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79,70,229,.45);
  color: #fff;
}
