/* Brandlogee LLMs.txt Generator — frontend styles.
   Scoped under .bl-llms so it never leaks into the theme. */

.bl-llms {
	/* Strict brand palette: black #000000, gold #FDBB11, white #FFFFFF.
	   Every neutral is a tint of black; every warm tone is a tint of gold. */
	--bl-accent: #fdbb11;
	--bl-ink: #000000;
	--bl-black: #000000;
	--bl-white: #ffffff;
	--bl-muted: rgba(0, 0, 0, .62);
	--bl-line: rgba(0, 0, 0, .12);
	--bl-bg: #ffffff;
	--bl-soft: rgba(253, 187, 17, .08);
	--bl-gold-line: rgba(253, 187, 17, .45);
	--bl-radius: 16px;
	--bl-shadow: 0 1px 2px rgba(0, 0, 0, .05), 0 12px 32px -12px rgba(0, 0, 0, .22);
	/* Brand typography (site Elementor kit): Syncopate 700 headings, Montserrat body. */
	--bl-font-heading: 'Syncopate', sans-serif;
	--bl-font-body: 'Montserrat', sans-serif;

	max-width: 760px;
	margin: 0 auto;
	font-family: var(--bl-font-body);
	font-size: 16px;
	line-height: 1.55;
	color: var(--bl-ink);
	-webkit-font-smoothing: antialiased;
	/* Breathing room so cards never touch the screen edge (iPhone X etc.).
	   No-op on desktop where the 760px block is centered with space to spare. */
	padding-left: 16px;
	padding-right: 16px;
}

/* Site hierarchy: Syncopate for the hero title only, Montserrat 700 for
   section headings (matches how brandlogee.com uses the kit). */
.bl-llms h2 { font-family: var(--bl-font-heading); font-weight: 700; }
.bl-llms h3 { font-family: var(--bl-font-body); font-weight: 700; }

.bl-llms input,
.bl-llms select,
.bl-llms textarea,
.bl-llms button { font-family: var(--bl-font-body); }

.bl-llms *,
.bl-llms *::before,
.bl-llms *::after { box-sizing: border-box; }

/* ── Cards ── */
.bl-llms-card {
	background: var(--bl-bg);
	border: 1px solid var(--bl-line);
	border-radius: var(--bl-radius);
	padding: 28px;
	margin-bottom: 20px;
	box-shadow: var(--bl-shadow);
}

/* ── Intro / hero: black like the site's dark sections ── */
.bl-llms-intro {
	background: var(--bl-black);
	border-color: var(--bl-black);
	text-align: center;
}

.bl-llms-intro .bl-llms-title { color: var(--bl-white); }
.bl-llms-intro .bl-llms-sub { color: rgba(255, 255, 255, .78); }

.bl-llms-badge {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .02em;
	color: var(--bl-black);
	background: var(--bl-accent);
	border: 1px solid var(--bl-accent);
	padding: 5px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}

.bl-llms-title {
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0;
}

.bl-llms-sub {
	margin: 0 auto;
	max-width: 560px;
	color: var(--bl-muted);
	font-size: 15.5px;
}

/* ── Form ── */
.bl-llms-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.bl-llms-field { margin-bottom: 18px; }

.bl-llms-field label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 7px;
}

.bl-llms-field input[type="text"],
.bl-llms-field input[type="url"],
.bl-llms-field input[type="email"],
.bl-llms-field input[type="tel"],
.bl-llms-field select,
.bl-llms-field textarea {
	width: 100%;
	padding: 12px 14px;
	/* 16px minimum: any smaller and iOS Safari auto-zooms the page when a
	   field is focused, leaving the whole page zoomed and cut off on the right. */
	font-size: 16px;
	color: var(--bl-ink);
	background: var(--bl-bg);
	border: 1.5px solid var(--bl-line);
	border-radius: 10px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.bl-llms-field input:focus,
.bl-llms-field select:focus,
.bl-llms-field textarea:focus {
	outline: none;
	border-color: var(--bl-accent);
	box-shadow: 0 0 0 3px rgba(253, 187, 17, .28);
}

.bl-llms-hint {
	display: block;
	margin-top: 6px;
	font-size: 12.5px;
	color: var(--bl-muted);
}

.bl-llms-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
	font-size: 13.5px;
	color: var(--bl-muted);
	cursor: pointer;
}

.bl-llms-consent input[type="checkbox"] {
	margin-top: 3px;
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
	accent-color: var(--bl-accent);
}

.bl-llms-consent a { color: var(--bl-ink); text-decoration-color: var(--bl-accent); }

/* ── Buttons: flat brand gold with black text (mirrors "Schedule a Call"),
      hover flips to black with gold text ── */
.bl-llms-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 22px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	color: var(--bl-black) !important;
	background: var(--bl-accent);
	border: 1.5px solid var(--bl-accent);
	border-radius: 10px;
	cursor: pointer;
	text-decoration: none !important;
	transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
	box-shadow: 0 8px 20px -8px rgba(253, 187, 17, .7);
}

.bl-llms-btn:hover {
	background: var(--bl-black);
	color: var(--bl-accent) !important;
	border-color: var(--bl-black);
	transform: translateY(-1px);
	box-shadow: 0 12px 26px -10px rgba(0, 0, 0, .5);
}
.bl-llms-btn:active { transform: translateY(0); }
.bl-llms-btn:disabled { opacity: .6; cursor: wait; transform: none; box-shadow: none; }

.bl-llms-btn-block { width: 100%; padding: 15px; font-size: 16px; }

.bl-llms-btn-ghost {
	background: var(--bl-bg) !important;
	color: var(--bl-ink) !important;
	border: 1.5px solid var(--bl-line);
	box-shadow: none;
}
.bl-llms-btn-ghost:hover { background: var(--bl-soft) !important; border-color: var(--bl-accent); color: var(--bl-ink) !important; }

.bl-llms-trust {
	margin: 12px 0 0;
	text-align: center;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--bl-muted);
}

.bl-llms-trust strong { color: var(--bl-ink); }

/* Captcha (math spam-check) */
.bl-llms-captcha {
	background: var(--bl-soft);
	border: 1px solid var(--bl-gold-line);
	border-radius: 10px;
	padding: 14px 16px;
}
.bl-llms-captcha label { font-weight: 700; }
.bl-llms-captcha input { max-width: 200px; }

/* Honeypot */
.bl-llms-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px; overflow: hidden;
}

/* Error: black-on-gold — urgent but still on palette. */
.bl-llms-error {
	margin: 14px 0 0;
	color: var(--bl-black);
	background: rgba(253, 187, 17, .18);
	border: 1.5px solid var(--bl-accent);
	border-radius: 10px;
	padding: 11px 14px;
	font-size: 14px;
	font-weight: 600;
}

.bl-llms-note { font-size: 14px; color: var(--bl-muted); margin: 4px 0 0; }

/* ── Progress ── */
.bl-llms-status { font-weight: 700; font-size: 15px; margin: 0 0 12px; }

.bl-llms-bar {
	height: 10px;
	background: rgba(0, 0, 0, .08);
	border-radius: 999px;
	overflow: hidden;
}

.bl-llms-bar-fill {
	height: 100%;
	width: 5%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--bl-accent), #d99f00, var(--bl-accent));
	background-size: 200% 100%;
	transition: width .6s ease;
	animation: bl-llms-shimmer 1.6s linear infinite;
}

@keyframes bl-llms-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}

.bl-llms-progress-hint { margin: 12px 0 0; font-size: 13px; color: var(--bl-muted); }

/* ── Result / report ── */
.bl-llms-result { border-color: var(--bl-gold-line); }

.bl-llms-result-head {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 22px;
}

.bl-llms-check {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bl-accent);
	color: var(--bl-black);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 8px 18px -8px rgba(253, 187, 17, .8);
}

.bl-llms-result-head h3 { margin: 2px 0 4px; font-size: 20px; font-weight: 700; }

/* Stats */
.bl-llms-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	margin-bottom: 22px;
}

.bl-llms-stat {
	background: var(--bl-soft);
	border: 1px solid var(--bl-line);
	border-top: 3px solid var(--bl-accent);
	border-radius: 12px;
	padding: 16px 12px;
	text-align: center;
}

.bl-llms-stat strong {
	display: block;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--bl-ink);
}

.bl-llms-stat span { display: block; margin-top: 5px; font-size: 12px; color: var(--bl-muted); }

/* Actions */
.bl-llms-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.bl-llms-actions .bl-llms-download { flex: 1 1 220px; }

/* Preview as a "code window" — brand black with gold accents */
.bl-llms-preview-wrap {
	border: 1px solid var(--bl-line);
	border-radius: 12px;
	overflow: hidden;
}

.bl-llms-preview-bar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	background: var(--bl-black);
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.bl-llms-dots { display: inline-flex; gap: 6px; }
.bl-llms-dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.bl-llms-dots i:nth-child(1) { background: var(--bl-accent); }
.bl-llms-dots i:nth-child(2) { background: rgba(253, 187, 17, .5); }
.bl-llms-dots i:nth-child(3) { background: rgba(255, 255, 255, .35); }

.bl-llms-filename { color: rgba(255, 255, 255, .65); font-size: 12.5px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.bl-llms-preview {
	max-height: 460px;
	overflow: auto;
	margin: 0;
	padding: 18px;
	background: var(--bl-black);
	color: rgba(255, 255, 255, .88);
	font-size: 12.5px;
	line-height: 1.6;
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	white-space: pre-wrap;
	word-break: break-word;
}

.bl-llms-preview::-webkit-scrollbar { width: 10px; height: 10px; }
.bl-llms-preview::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .25); border-radius: 999px; }

/* ── Daily limit notice ── */
.bl-llms-limit {
	text-align: center;
	background: var(--bl-soft);
	border-color: var(--bl-gold-line);
}

.bl-llms-limit-icon {
	font-size: 40px;
	line-height: 1;
	margin-bottom: 10px;
}

.bl-llms-limit h3 {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 700;
	color: var(--bl-black);
}

.bl-llms-limit-msg {
	margin: 0 auto;
	max-width: 460px;
	color: var(--bl-muted);
	font-size: 15px;
}

.bl-llms-limit-pitch {
	margin: 12px auto 0;
	max-width: 460px;
	color: var(--bl-ink);
	font-size: 15px;
}

.bl-llms-limit .bl-llms-limit-cta { margin-top: 18px; }

/* ── Responsive ── */
@media (max-width: 560px) {
	.bl-llms-card { padding: 20px; }
	.bl-llms-grid { grid-template-columns: 1fr; }
	.bl-llms-stats { grid-template-columns: repeat(2, 1fr); }
	.bl-llms-title { font-size: 18px; }
	.bl-llms-actions .bl-llms-download { flex-basis: 100%; }
}

/* ─────────────────────────────────────────────
   Dormant Pro wizard styles (kept for parity).
   ───────────────────────────────────────────── */
.bl-llms-link { background: none; border: 0; color: var(--bl-ink); cursor: pointer; padding: 4px 0; text-decoration: underline; text-decoration-color: var(--bl-accent); }
.bl-llms-joblog { max-height: 180px; overflow: auto; background: var(--bl-black); color: rgba(255, 255, 255, .82); padding: 12px; border-radius: 8px; font-size: 12px; white-space: pre-wrap; }
.bl-llms-steps-nav { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 20px; padding: 0; }
.bl-llms-steps-nav li { padding: 6px 12px; background: rgba(0, 0, 0, .06); border-radius: 999px; font-size: 13px; cursor: pointer; }
.bl-llms-steps-nav li.active { background: var(--bl-accent); color: var(--bl-black); }
.bl-llms-steps-nav li.done { background: rgba(253, 187, 17, .3); }
.bl-llms-step { border: 0; padding: 0; margin: 0 0 16px; }
.bl-llms-wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 16px; }
.bl-llms-row { display: flex; gap: 8px; margin-bottom: 8px; align-items: center; }
.bl-llms-row input { flex: 1; padding: 8px 10px; border: 1px solid rgba(0, 0, 0, .2); border-radius: 6px; }
.bl-llms-remove { background: rgba(0, 0, 0, .08); color: var(--bl-black); border: 0; border-radius: 6px; width: 28px; height: 28px; cursor: pointer; font-size: 16px; line-height: 1; }
.bl-llms-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.bl-llms-credits { font-weight: 700; background: rgba(253, 187, 17, .18); color: var(--bl-black); padding: 6px 12px; border-radius: 999px; }
.bl-llms-summary dl { display: grid; grid-template-columns: 180px 1fr; gap: 6px 16px; }
.bl-llms-summary dt { font-weight: 600; }
.bl-llms-summary dd { margin: 0; }
.bl-llms-scores { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 10px; margin: 16px 0; }
.bl-llms-score { background: var(--bl-soft); border: 1px solid var(--bl-line); border-radius: 10px; padding: 14px; text-align: center; }
.bl-llms-score strong { display: block; font-size: 26px; color: var(--bl-black); }
.bl-llms-score span { font-size: 12px; color: var(--bl-muted); }
.bl-llms-checklist ul { list-style: none; padding: 0; margin: 0 0 12px; }
.bl-llms-checklist li { padding: 3px 0; font-size: 14px; }
.bl-llms-checklist li.pass { color: rgba(0, 0, 0, .75); }
.bl-llms-checklist li.warn { color: #a77c00; }
.bl-llms-checklist li.fail { color: var(--bl-black); font-weight: 600; }
.bl-llms-history-list table { width: 100%; border-collapse: collapse; }
.bl-llms-history-list td { padding: 8px 6px; border-bottom: 1px solid var(--bl-line); font-size: 14px; }
.bl-llms-pricing { list-style: none; padding: 0; }
.bl-llms-pricing li { padding: 6px 0; }
