/* ==========================================================================
   PinkDocs — landing page
   ========================================================================== */

:root {
	--pd-accent: #ff26ba;
	--brand: var(--pd-accent);
	--brand-ink: #ffffff;            /* text on brand fills */
	--brand-tint: color-mix(in srgb, var(--brand) 12%, transparent);

	--bg: #0a0a0b;
	--bg-raised: #111113;
	--bg-inset: #0e0e10;
	--line: #1f1f23;
	--line-strong: #2c2c32;
	--text: #ededef;
	--text-2: #a1a1aa;
	--text-3: #71717a;

	--font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
	--wrap: 1160px;
	--r: 12px;
	color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body.pl-body {
	margin: 0; background: var(--bg); color: var(--text);
	font-family: var(--font); font-size: 16px; line-height: 1.6;
	font-feature-settings: "cv11", "ss01"; -webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
img { max-width: 100%; height: auto; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.pl-skip { position: absolute; left: -999px; top: 8px; z-index: 200; background: var(--brand); color: var(--brand-ink); padding: 8px 14px; border-radius: 8px; }
.pl-skip:focus { left: 8px; }

.pl-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.pl-i { flex: none; }

/* Buttons ---------------------------------------------------------------- */
.pl-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	height: 36px; padding: 0 14px; border-radius: 8px; border: 1px solid transparent;
	font-size: 14px; font-weight: 500; white-space: nowrap; cursor: pointer;
	transition: background-color .15s, border-color .15s, color .15s;
}
.pl-btn .pl-i { width: 16px; height: 16px; }
.pl-btn-lg { height: 44px; padding: 0 20px; font-size: 15px; }
.pl-btn-primary { background: var(--brand); color: var(--brand-ink); font-weight: 600; }
.pl-btn-primary:hover { background: color-mix(in srgb, var(--brand) 88%, black); }
.pl-btn-secondary { background: var(--bg-raised); border-color: var(--line-strong); color: var(--text); }
.pl-btn-secondary:hover { border-color: #3f3f46; background: #18181b; }
.pl-btn-quiet { color: var(--text-2); }
.pl-btn-quiet:hover { color: var(--text); }

/* Header ----------------------------------------------------------------- */
.pl-header {
	position: sticky; top: 0; z-index: 100;
	border-bottom: 1px solid rgb(255 255 255 / .06);
}
/* Blur lives on a background layer so the fixed mobile menu inside the header renders opaque. */
.pl-header::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: rgb(10 10 11 / .55);
	backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.admin-bar .pl-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .pl-header { top: 46px; } }
.pl-header-inner { display: flex; align-items: center; gap: 32px; height: 64px; }

.pl-brand { display: flex; align-items: center; gap: 10px; }
.pl-logo { height: 30px; width: auto; }
.pl-logo-mark { display: block; flex: none; }
.pl-mark { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 7px; background: var(--brand); color: var(--brand-ink); }
.pl-mark .pl-i { width: 16px; height: 16px; stroke-width: 2; }
.pl-brand-name { font-weight: 600; font-size: 16px; letter-spacing: -.01em; }

.pl-nav { flex: 1; display: flex; align-items: center; gap: 16px; }
.pl-nav-list { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.pl-nav-list a { display: block; padding: 6px 12px; border-radius: 6px; font-size: 14px; color: var(--text-2); transition: color .15s; }
.pl-nav-list a:hover { color: var(--text); }
.pl-nav-actions { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.pl-burger { display: none; margin-left: auto; width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--line-strong); background: none; color: var(--text); cursor: pointer; place-items: center; }
.pl-burger .pl-i:last-child { display: none; }
.pl-nav-open .pl-burger .pl-i:first-child { display: none; }
.pl-nav-open .pl-burger .pl-i:last-child { display: block; }

/* Hero ----------------------------------------------------------------------- */
.pl-hero { position: relative; margin-top: -64px; padding: 176px 0 0; overflow: hidden; }
.pl-hero > .pl-wrap { position: relative; }
.pl-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.pl-hero-bg::before {
	content: ""; position: absolute; inset: 0;
	background-image:
		linear-gradient(to right, rgb(255 255 255 / .045) 1px, transparent 1px),
		linear-gradient(to bottom, rgb(255 255 255 / .045) 1px, transparent 1px);
	background-size: 32px 32px; background-position: center top;
	-webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 0%, #000 30%, transparent 100%);
	mask-image: radial-gradient(ellipse 75% 70% at 50% 0%, #000 30%, transparent 100%);
}
.pl-hero-bg::after {
	content: ""; position: absolute; left: 50%; top: -240px; width: 900px; height: 480px; transform: translateX(-50%);
	background: radial-gradient(closest-side, color-mix(in srgb, var(--brand) 16%, transparent), transparent);
}
.pl-hero-copy { max-width: 820px; margin: 0 auto; text-align: center; }
.pl-hero-copy .pl-lead { margin-left: auto; margin-right: auto; }
.pl-hero-copy .pl-actions { justify-content: center; }

.pl-announce {
	display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
	padding: 4px 12px 4px 4px; border: 1px solid var(--line-strong); border-radius: 999px;
	font-size: 13.5px; color: var(--text-2); transition: border-color .15s, color .15s;
}
.pl-announce:hover { border-color: #3f3f46; color: var(--text); }
.pl-announce-tag { padding: 2px 8px; border-radius: 999px; background: var(--brand-tint); color: var(--brand); font-size: 12px; font-weight: 600; }
.pl-announce .pl-i { width: 14px; height: 14px; }

.pl-h1 { font-size: clamp(38px, 6vw, 68px); line-height: 1.06; letter-spacing: -.035em; font-weight: 600; text-wrap: balance; }
.pl-lead { margin-top: 20px; max-width: 620px; font-size: 18px; line-height: 1.6; color: var(--text-2); text-wrap: pretty; }
.pl-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }

/* Product preview */
.pl-preview {
	position: relative; margin-top: 72px;
	border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 14px 14px 0 0;
	background: var(--bg-inset); overflow: hidden;
	box-shadow: 0 -20px 80px -40px color-mix(in srgb, var(--brand) 30%, transparent);
}
.pl-preview::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(transparent, var(--bg)); pointer-events: none; }
.pv-bar { display: flex; align-items: center; height: 40px; padding: 0 14px; border-bottom: 1px solid var(--line); }
.pv-dots { display: flex; gap: 6px; }
.pv-dots i { width: 10px; height: 10px; border-radius: 50%; background: #27272a; }
.pv-url { margin: 0 auto; font-family: var(--mono); font-size: 12px; color: var(--text-3); padding-right: 50px; }
.pv-body { display: grid; grid-template-columns: 220px 1fr 300px; min-height: 440px; font-size: 13px; }
.pv-side { padding: 16px 12px; border-right: 1px solid var(--line); }
.pv-search { display: flex; align-items: center; gap: 8px; height: 32px; padding: 0 10px; border: 1px solid var(--line); border-radius: 7px; color: var(--text-3); margin-bottom: 16px; }
.pv-search .pl-i { width: 14px; height: 14px; }
.pv-search kbd { margin-left: auto; font-family: var(--mono); font-size: 11px; padding: 0 5px; border: 1px solid var(--line-strong); border-radius: 4px; }
.pv-group { font-size: 12px; font-weight: 600; color: var(--text); margin: 16px 0 4px 8px; }
.pv-item { padding: 4px 8px; border-radius: 6px; color: var(--text-2); }
.pv-item.is-on { background: #18181b; color: var(--text); box-shadow: inset 2px 0 0 var(--brand); }
.pv-main { padding: 32px 40px; }
.pv-crumb { font-size: 12px; color: var(--text-3); }
.pv-crumb span { margin: 0 4px; }
.pv-title { font-size: 28px; font-weight: 600; letter-spacing: -.025em; margin: 6px 0 12px; }
.pv-text { color: var(--text-2); font-size: 14px; line-height: 1.7; max-width: 520px; }
.pv-note { margin: 20px 0; padding: 10px 14px; border: 1px solid var(--line-strong); border-left: 2px solid var(--brand); border-radius: 6px; color: var(--text-2); font-size: 13px; background: var(--bg-raised); }
.pv-note b { color: var(--text); margin-right: 6px; }
.pv-note kbd, .pv-search kbd { background: var(--bg); }
.pv-note kbd { font-family: var(--mono); font-size: 11px; padding: 0 5px; border: 1px solid var(--line-strong); border-radius: 4px; }
.pv-h { font-size: 16px; font-weight: 600; margin: 24px 0 12px; }
.pv-line { height: 7px; border-radius: 4px; background: #1c1c20; margin: 10px 0; }
.pv-chat { display: flex; flex-direction: column; gap: 10px; padding: 16px; border-left: 1px solid var(--line); background: var(--bg-raised); }
.pv-chat-head { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.pv-chat-head .pl-i { width: 15px; height: 15px; color: var(--brand); }
.pv-msg { padding: 9px 12px; border-radius: 10px; line-height: 1.55; font-size: 13px; }
.pv-msg.me { align-self: flex-end; max-width: 85%; background: #27272a; color: var(--text); }
.pv-msg.ai { align-self: flex-start; max-width: 92%; border: 1px solid var(--line-strong); color: var(--text-2); }
.pv-msg.ai b { color: var(--text); font-weight: 500; }
.pv-input { margin-top: auto; height: 36px; display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--text-3); }

/* Sections --------------------------------------------------------------------- */
.pl-section { padding: 120px 0; border-top: 1px solid var(--line); }
.pl-hero + .pl-section { border-top: 0; padding-top: 80px; }
.pl-head { max-width: 640px; margin-bottom: 48px; }
.pl-head-center { margin-left: auto; margin-right: auto; text-align: center; }
.pl-h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.15; letter-spacing: -.03em; font-weight: 600; text-wrap: balance; }
.pl-sub { margin-top: 12px; font-size: 17px; color: var(--text-2); text-wrap: pretty; }

/* Feature spotlight (two large cells) */
.pl-spot { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r) var(--r) 0 0; overflow: hidden; }
.pl-spot-item { display: flex; flex-direction: column; gap: 28px; padding: 32px; background: var(--bg); }
.pl-spot-text h3, .pl-feature h3, .pl-ai-card h3 { font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.pl-spot-text p, .pl-feature p, .pl-ai-card > p { margin-top: 6px; font-size: 14.5px; color: var(--text-2); line-height: 1.6; }
.pl-spot-text p { max-width: 420px; }
.pl-spot-vis { margin-top: auto; padding: 20px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-inset); }

.vis-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vis-blocks span { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--bg-raised); font-size: 13px; color: var(--text-2); }
.vis-blocks .pl-i { width: 16px; height: 16px; color: var(--text-3); }
.vis-blocks span:first-child { border-color: color-mix(in srgb, var(--brand) 55%, transparent); color: var(--text); }
.vis-blocks span:first-child .pl-i { color: var(--brand); }

.vis-kbs { display: grid; gap: 8px; }
.vis-kbs .kb { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--bg-raised); font-size: 13.5px; }
.vis-kbs .kb small { font-size: 12px; color: var(--text-3); }
.vis-kbs .kb.is-on { border-color: color-mix(in srgb, var(--brand) 55%, transparent); }
.vis-kbs .kb.is-on span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); margin-right: 10px; vertical-align: middle; }

/* Feature grid */
.pl-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 var(--r) var(--r); overflow: hidden; }
.pl-feature { padding: 28px; background: var(--bg); }
.pl-feature-icon { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border: 1px solid var(--line-strong); border-radius: 8px; color: var(--text); background: var(--bg-raised); }
.pl-feature-icon .pl-i { width: 17px; height: 17px; }
.pl-feature:hover .pl-feature-icon { color: var(--brand); }

/* AI */
.pl-ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pl-ai-card { display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); }
.pl-ai-vis { display: flex; flex-direction: column; gap: 8px; min-height: 168px; margin-bottom: 24px; padding: 16px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-inset); font-size: 13px; }
.sum-h { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13px; }
.sum-h .pl-i { width: 15px; height: 15px; color: var(--brand); }
.sum-list { margin: 4px 0 0; padding-left: 18px; display: grid; gap: 6px; color: var(--text-2); }
.sum-list li::marker { color: var(--text-3); }
.tones { display: flex; gap: 6px; flex-wrap: wrap; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.tones span { padding: 3px 10px; border: 1px solid var(--line-strong); border-radius: 6px; font-size: 12px; color: var(--text-3); }
.tones span.on { border-color: color-mix(in srgb, var(--brand) 55%, transparent); color: var(--text); background: var(--brand-tint); }
.w-q { font-weight: 600; margin-top: 4px; }
.w-a { color: var(--text-2); }
.caret { display: inline-block; width: 1.5px; height: 1em; margin-left: 2px; vertical-align: -2px; background: var(--brand); animation: pl-blink 1s steps(1) infinite; }
@keyframes pl-blink { 50% { opacity: 0; } }

.pl-list { list-style: none; margin: 20px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.pl-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.pl-list .pl-i { width: 16px; height: 16px; color: var(--brand); stroke-width: 2.2; }

/* Integrations orbit */
.pl-orbit-section { --r: 330px; --tile: 60px; --spin: 90s; position: relative; overflow: hidden; padding: 0; }
.pl-orbit-section::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background-image:
		linear-gradient(to right, rgb(255 255 255 / .045) 1px, transparent 1px),
		linear-gradient(to bottom, rgb(255 255 255 / .045) 1px, transparent 1px);
	background-size: 32px 32px; background-position: center center;
	-webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 25%, transparent 100%);
	mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, #000 25%, transparent 100%);
}
.pl-orbit-stage {
	position: relative; display: grid; place-items: center;
	height: calc(var(--r) * 2 + var(--tile) + 120px);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 78%, transparent 100%);
	mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 78%, transparent 100%);
}
.pl-orbit-stage::before {
	content: ""; position: absolute; left: 50%; top: 50%; width: calc(var(--r) * 2); height: calc(var(--r) * 2);
	transform: translate(-50%, -50%); border-radius: 50%; border: 1px dashed var(--line-strong); pointer-events: none;
}
.pl-orbit { position: absolute; left: 50%; top: 50%; width: 0; height: 0; margin: 0; padding: 0; list-style: none; animation: pl-spin var(--spin) linear infinite; }
.pl-orbit li {
	position: absolute; left: calc(var(--tile) / -2); top: calc(var(--tile) / -2);
	transform: rotate(calc(var(--i) * 360deg / var(--n))) translateY(calc(var(--r) * -1)) rotate(calc(var(--i) * -360deg / var(--n)));
}
.pl-orbit-tile {
	display: grid; place-items: center; width: var(--tile); height: var(--tile); border-radius: 16px;
	background: var(--bg-raised); border: 1px solid var(--line-strong); color: var(--text);
	box-shadow: 0 10px 30px -12px rgb(0 0 0 / .8);
	animation: pl-spin var(--spin) linear infinite reverse;
}
.pl-orbit-tile .pl-i { width: 24px; height: 24px; }
.pl-orbit li:nth-child(4n+1) .pl-orbit-tile { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
@keyframes pl-spin { to { transform: rotate(360deg); } }
/* keep each tile's own rotation composed with the spin */
.pl-orbit-tile { transform-origin: center; }

.pl-orbit-copy { position: relative; z-index: 1; max-width: 480px; padding: 0 16px; text-align: center; }
.pl-orbit-copy .pl-actions { justify-content: center; }

.pl-marquee { display: none; overflow: hidden; padding: 8px 0 72px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.pl-marquee-track { display: flex; width: max-content; animation: pl-marquee 40s linear infinite; }
.pl-marquee ul { display: flex; gap: 10px; margin: 0; padding: 0 10px 0 0; list-style: none; }
.pl-marquee li { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--bg-raised); font-size: 14px; color: var(--text-2); white-space: nowrap; }
.pl-marquee .pl-i { width: 18px; height: 18px; color: var(--text); }
@keyframes pl-marquee { to { transform: translateX(-50%); } }

/* Pricing */
.pl-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1040px; margin: 0 auto; align-items: stretch; }
.pl-plan { display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); }
.pl-plan.is-featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), 0 24px 60px -30px color-mix(in srgb, var(--brand) 55%, transparent); }
.pl-plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pl-plan h3 { font-size: 16px; font-weight: 600; }
.pl-plan-badge { padding: 2px 10px; border-radius: 999px; background: var(--brand-tint); color: var(--brand); font-size: 12px; font-weight: 600; }
.pl-plan-desc { margin-top: 6px; font-size: 14px; color: var(--text-2); }
.pl-price { display: flex; align-items: flex-end; gap: 10px; margin: 28px 0 24px; }
.pl-price-now { font-size: 48px; font-weight: 600; line-height: 1; letter-spacing: -.04em; font-variant-numeric: tabular-nums; }
.pl-price-meta { display: flex; flex-direction: column; font-size: 13px; line-height: 1.3; color: var(--text-3); padding-bottom: 3px; }
.pl-price-meta s { color: var(--text-3); text-decoration-color: color-mix(in srgb, var(--brand) 70%, transparent); }
.pl-plan .pl-btn { width: 100%; }
.pl-plan .pl-list { margin-top: 24px; }
.pl-plans-note { margin-top: 24px; text-align: center; font-size: 13px; color: var(--text-3); }

/* Closing */
.pl-closing-inner { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; }
.pl-closing .pl-actions { margin-top: 0; }

/* AI cards: visual first, one-line caption */
.pl-ai-card { padding: 0; overflow: hidden; background: var(--bg-raised); }
.pl-ai-card .pl-ai-vis {
	justify-content: center; gap: 10px; height: 240px; min-height: 0; margin: 0; padding: 24px 28px; overflow: hidden;
	border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
	background: radial-gradient(120% 80% at 50% 0%, #16161a, var(--bg-inset));
}
.pl-ai-text { padding: 20px 24px 24px; }
.pl-ai-text p { margin-top: 4px; font-size: 14.5px; color: var(--text-2); }

.vis-chat .pv-msg.me { align-self: flex-end; }
.ai-reply { display: flex; align-items: flex-start; gap: 8px; }
.ai-avatar { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--brand-tint); color: var(--brand); }
.ai-avatar .pl-i { width: 14px; height: 14px; }
.ai-reply .pv-msg.ai { max-width: none; }
.ai-source { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-left: 34px; padding: 3px 8px; border: 1px solid var(--line-strong); border-radius: 6px; font-size: 11.5px; color: var(--text-3); }
.ai-source .pl-i { width: 12px; height: 12px; }

.vis-summary { display: grid !important; grid-template-columns: 1fr; align-content: center; }
.sum-doc { padding: 4px 0 2px; }
.sum-doc i, .writer-lines i { display: block; height: 6px; margin: 9px 0; border-radius: 3px; background: #222227; }
.sum-out { padding: 12px 14px; border: 1px solid color-mix(in srgb, var(--brand) 40%, transparent); border-radius: 10px; background: color-mix(in srgb, var(--brand) 7%, var(--bg-raised)); }
.sum-out p:last-child { margin-top: 4px; font-size: 13px; color: var(--text-2); line-height: 1.5; }

.vis-writer .tones { border-bottom: 0; padding-bottom: 4px; }
.writer-lines .typing-line { position: relative; animation: pl-type 3.2s ease-in-out infinite; background: color-mix(in srgb, var(--brand) 45%, #222227); }
@keyframes pl-type { 0% { width: 8%; } 70%, 100% { width: 52%; } }

/* FAQ */
.pl-faq { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 64px; align-items: start; }
.pl-faq .pl-head { margin-bottom: 0; position: sticky; top: 96px; }
.pl-inline-link { color: var(--text); text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 3px; }
.pl-inline-link:hover { color: var(--brand); }
.pl-faq-item { border-bottom: 1px solid var(--line); }
.pl-faq-item:first-child { border-top: 1px solid var(--line); }
.pl-faq-item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 24px;
	padding: 20px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 500;
}
.pl-faq-item summary::-webkit-details-marker { display: none; }
.pl-faq-item summary:hover { color: #fff; }
.pl-faq-icon { position: relative; width: 14px; height: 14px; flex: none; color: var(--text-3); }
.pl-faq-icon::before, .pl-faq-icon::after { content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 1.5px; border-radius: 1px; background: currentColor; transition: transform .2s ease; }
.pl-faq-icon::after { transform: rotate(90deg); }
.pl-faq-item[open] .pl-faq-icon::after { transform: rotate(0deg); }
.pl-faq-item[open] .pl-faq-icon { color: var(--brand); }
.pl-faq-item p { padding: 0 40px 22px 0; max-width: 62ch; font-size: 15px; line-height: 1.65; color: var(--text-2); }

/* Mobile header CTA (shown next to the menu button) */
.pl-header-cta { display: none; }

/* Spotlight illustrations ------------------------------------------------ */
.pl-spot-item { gap: 24px; }
.pl-spot-item .pl-spot-vis { margin-top: 0; height: 280px; padding: 0; overflow: hidden; position: relative;
	background: radial-gradient(120% 90% at 50% 0%, #17171b, var(--bg-inset)); }
.pl-spot-text p { margin-top: 4px; }

/* Editor: blocks cycle into the page, inserter highlights in sync (9s loop) */
.ed-win { position: absolute; left: 28px; right: 28px; top: 28px; bottom: -1px; border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 10px 10px 0 0; background: var(--bg-raised); }
.ed-bar { display: flex; align-items: center; gap: 10px; height: 34px; padding: 0 12px; border-bottom: 1px solid var(--line); font-size: 11.5px; color: var(--text-3); }
.ed-bar .pv-dots i { width: 8px; height: 8px; }
.ed-title { margin-left: 4px; }
.ed-pub { margin-left: auto; padding: 2px 8px; border-radius: 5px; background: var(--brand); color: #fff; font-weight: 600; font-size: 11px; }
.ed-body { padding: 16px 84px 0 18px; }
.ed-h { font-size: 15px; font-weight: 600; margin-bottom: 10px; }
.ed-line { display: block; height: 6px; margin: 8px 0; border-radius: 3px; background: #222227; }
.ed-slot { position: relative; height: 46px; margin: 12px 0; }
.ed-block { position: absolute; inset: 0; display: flex; align-items: center; gap: 8px; padding: 0 12px; border-radius: 8px; font-size: 12.5px; color: var(--text-2);
	outline: 1.5px solid var(--brand); outline-offset: 3px; opacity: 0; animation: ed-cycle 9s infinite; }
.b-callout { background: color-mix(in srgb, var(--brand) 9%, var(--bg-raised)); border-left: 2px solid var(--brand); }
.b-callout b { color: var(--text); }
.b-code { background: #07070a; border: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: #d4d4d8; animation-delay: -6s; }
.b-steps { gap: 0; padding: 0 16px; border: 1px solid var(--line); animation-delay: -3s; }
.b-steps span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-strong); font-size: 11px; color: var(--text); }
.b-steps span:first-child { background: var(--brand); border-color: var(--brand); color: #fff; }
.b-steps i { flex: 1; height: 1px; background: var(--line-strong); }
@keyframes ed-cycle { 0% { opacity: 0; transform: translateY(8px); } 6%, 28% { opacity: 1; transform: none; } 33%, 100% { opacity: 0; transform: translateY(-4px); } }
.ed-inserter { position: absolute; right: 14px; top: 50px; display: grid; gap: 6px; padding: 6px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--bg); box-shadow: 0 12px 30px -10px rgb(0 0 0 / .8); }
.ins { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 7px; color: var(--text-3); }
.ins .pl-i { width: 15px; height: 15px; }
.ins-callout, .ins-code, .ins-steps { animation: ins-cycle 9s infinite; }
.ins-code { animation-delay: -6s; } .ins-steps { animation-delay: -3s; }
@keyframes ins-cycle { 0%, 30% { background: var(--brand); color: #fff; } 34%, 100% { background: transparent; color: var(--text-3); } }

/* Knowledge bases: a deck that shuffles, switcher label follows (9s loop) */
.kb-switch { position: absolute; left: 50%; top: 26px; transform: translateX(-50%); z-index: 5; display: flex; align-items: center; gap: 8px; height: 34px; padding: 0 12px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--bg); font-size: 13px; box-shadow: 0 8px 24px -10px rgb(0 0 0 / .8); }
.kb-switch .pl-i { width: 15px; height: 15px; color: var(--brand); }
.kb-labels { position: relative; display: inline-block; width: 104px; height: 18px; }
.kb-labels b { position: absolute; left: 0; top: 0; font-weight: 500; white-space: nowrap; opacity: 0; animation: kb-label 9s infinite; }
.kb-labels .l2 { animation-delay: -6s; } .kb-labels .l3 { animation-delay: -3s; }
@keyframes kb-label { 0% { opacity: 0; transform: translateY(6px); } 4%, 30% { opacity: 1; transform: none; } 34%, 100% { opacity: 0; transform: translateY(-6px); } }
.kb-caret { color: var(--text-3); }
.kb-deck { position: absolute; left: 50%; bottom: -30px; width: min(78%, 400px); height: 190px; transform: translateX(-50%); }
.kb-card { position: absolute; left: 0; right: 0; bottom: 0; height: 170px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--bg-raised); animation: kb-deck 9s infinite; transform-origin: 50% 0; }
.kb-card.c2 { animation-delay: -6s; } .kb-card.c3 { animation-delay: -3s; }
@keyframes kb-deck {
	0%, 30%  { transform: translateY(0) scale(1); opacity: 1; z-index: 3; border-color: color-mix(in srgb, var(--brand) 55%, transparent); }
	33%, 63% { transform: translateY(-36px) scale(.88); opacity: .35; z-index: 1; border-color: var(--line-strong); }
	66%, 96% { transform: translateY(-18px) scale(.94); opacity: .65; z-index: 2; border-color: var(--line-strong); }
	100%     { transform: translateY(0) scale(1); opacity: 1; z-index: 3; }
}
.kb-card-head { display: flex; align-items: center; gap: 10px; }
.kb-icon { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--brand-tint); color: var(--brand); }
.kb-icon .pl-i { width: 16px; height: 16px; }
.kb-name { font-size: 14px; font-weight: 600; }
.kb-count { margin-left: auto; font-size: 12px; color: var(--text-3); }
.kb-card-body { margin-top: 14px; }
.kb-card-body i { display: block; height: 6px; margin: 10px 0; border-radius: 3px; background: #222227; }

/* AI chat reply appears after the question */
.vis-chat .ai-reply, .vis-chat .ai-source { animation: ai-reply 7s infinite; }
.vis-chat .ai-source { animation-name: ai-source; }
@keyframes ai-reply { 0%, 12% { opacity: 0; transform: translateY(6px); } 20%, 88% { opacity: 1; transform: none; } 96%, 100% { opacity: 0; } }
@keyframes ai-source { 0%, 22% { opacity: 0; } 30%, 88% { opacity: 1; } 96%, 100% { opacity: 0; } }

.pl-feature-icon { transition: transform .2s ease, color .2s ease, border-color .2s ease; }
.pl-feature:hover .pl-feature-icon { transform: translateY(-2px); border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.pl-more { display: flex; justify-content: center; margin-top: 32px; }

/* Scroll reveal (only when JS runs) */
.pl-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.pl-reveal.is-in { opacity: 1; transform: none; }

/* Features page --------------------------------------------------------------- */
.pl-hero-sub { padding-bottom: 72px; }
.pl-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 36px; }
.pl-chips a { padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 13.5px; color: var(--text-2); background: rgb(17 17 19 / .7); transition: color .15s, border-color .15s; }
.pl-chips a:hover { color: var(--text); border-color: var(--brand); }
.pl-fgroup { padding: 88px 0; }
.pl-fgroup-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr); gap: 56px; align-items: start; }
.pl-fgroup-head { position: sticky; top: 96px; }
.pl-fgroup-head .pl-h2 { font-size: clamp(24px, 2.6vw, 30px); }
.pl-fgroup-head .pl-sub { font-size: 15.5px; }
.pl-fgroup-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); }
.pl-fgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pl-fgrid .pl-feature { padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); transition: border-color .2s; }
.pl-fgrid .pl-feature:hover { border-color: var(--line-strong); }
.pl-fgrid .pl-feature:last-child:nth-child(odd) { grid-column: 1 / -1; }

/* Group illustrations */
.pl-fill { position: relative; display: flex; flex-direction: column; justify-content: center; gap: 12px; height: 200px; margin-top: 28px; padding: 24px; overflow: hidden;
	border: 1px solid var(--line); border-radius: var(--r); background: radial-gradient(120% 90% at 50% 0%, #17171b, var(--bg-inset)); font-size: 13px; }
.fi-row { display: flex; align-items: center; gap: 10px; height: 34px; padding: 0 12px; margin: 0 0 6px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--bg-raised); color: var(--text-2); }
.fi-row .pl-i { width: 14px; height: 14px; color: var(--text-3); }
.fi-tree { position: relative; }
.fi-move { position: relative; z-index: 1; animation: fi-drag 4s ease-in-out infinite; }
@keyframes fi-drag { 0%, 15% { transform: none; } 30% { transform: translate(8px, -2px) rotate(-1deg); border-color: var(--brand); color: var(--text); box-shadow: 0 10px 24px -8px rgb(0 0 0 / .8); } 55%, 70% { transform: translate(8px, 78px) rotate(-1deg); border-color: var(--brand); color: var(--text); } 85%, 100% { transform: none; } }

.fi-modes { display: flex; gap: 10px; }
.fi-page { position: relative; flex: 1; height: 96px; padding: 12px 10px 10px 36px; border-radius: 8px; }
.fi-page i { position: absolute; left: 8px; top: 10px; bottom: 10px; width: 18px; border-radius: 4px; }
.fi-page b { display: block; height: 6px; margin-bottom: 8px; border-radius: 3px; }
.fi-page b:first-of-type { width: 55%; background: var(--brand) !important; }
.is-light { background: #f7f7f8; } .is-light i { background: #e4e4e7; } .is-light b { background: #d4d4d8; }
.is-dark { background: #18181b; border: 1px solid var(--line-strong); } .is-dark i { background: #27272a; } .is-dark b { background: #3f3f46; }
.fi-modes { animation: fi-swap 6s ease-in-out infinite; }
@keyframes fi-swap { 0%, 40% { flex-direction: row; } 50%, 90% { flex-direction: row-reverse; } }
.fi-swatches { display: flex; gap: 8px; }
.fi-swatches i { width: 22px; height: 22px; border-radius: 50%; background: var(--c); animation: fi-pick 4s infinite; }
.fi-swatches i:nth-child(2) { animation-delay: 1s; } .fi-swatches i:nth-child(3) { animation-delay: 2s; } .fi-swatches i:nth-child(4) { animation-delay: 3s; }
@keyframes fi-pick { 0%, 20% { box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--c); } 25%, 100% { box-shadow: none; } }

.fi-search { display: flex; align-items: center; gap: 8px; height: 36px; padding: 0 12px; border: 1px solid color-mix(in srgb, var(--brand) 55%, transparent); border-radius: 8px; background: var(--bg-raised); }
.fi-search .pl-i { width: 15px; height: 15px; color: var(--text-3); }
.fi-typed { display: inline-block; overflow: hidden; white-space: nowrap; width: 7ch; animation: fi-type 4s steps(7) infinite; }
@keyframes fi-type { 0% { width: 0; } 40%, 100% { width: 7ch; } }
.fi-results { padding: 4px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-raised); animation: fi-results 4s infinite; }
.fi-results p { margin: 0; padding: 5px 8px; border-radius: 6px; color: var(--text-2); }
.fi-results p:first-child { background: #1d1d21; color: var(--text); }
.fi-results b { color: var(--brand); font-weight: 600; }
@keyframes fi-results { 0%, 35% { opacity: 0; transform: translateY(-4px); } 45%, 100% { opacity: 1; transform: none; } }

.fill-access { align-items: center; }
.fi-lock { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand); color: #fff; animation: fi-pulse 2.4s ease-in-out infinite; }
.fi-lock .pl-i { width: 24px; height: 24px; }
@keyframes fi-pulse { 0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 45%, transparent); } 60% { box-shadow: 0 0 0 12px transparent; } }
.fi-roles { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.fi-roles span { padding: 4px 10px; border-radius: 999px; font-size: 12px; border: 1px dashed var(--line-strong); color: var(--text-3); text-decoration: line-through; }
.fi-roles span.on { border-style: solid; border-color: color-mix(in srgb, var(--brand) 50%, transparent); color: var(--text); text-decoration: none; }

.fi-q { align-self: flex-end; max-width: 80%; margin: 0; padding: 9px 12px; border-radius: 12px 12px 4px 12px; background: #27272a; }
.fi-a { display: flex; align-items: center; gap: 8px; }
.fi-a .typing { padding: 12px 14px; border: 1px solid var(--line-strong); border-radius: 12px 12px 12px 4px; color: var(--text-2); }
.fi-spark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); }
.fi-spark .pl-i { width: 15px; height: 15px; animation: pl-spin 6s linear infinite; }

.fi-wave { display: flex; align-items: center; gap: 4px; height: 56px; }
.fi-wave i { flex: 1; height: 30%; border-radius: 2px; background: color-mix(in srgb, var(--brand) 70%, #fff 0%); animation: fi-bar 1s ease-in-out infinite alternate; animation-delay: var(--d); }
@keyframes fi-bar { to { height: 100%; } }
.fi-langs { display: flex; gap: 6px; }
.fi-langs span { flex: 1; text-align: center; padding: 5px 0; border: 1px solid var(--line-strong); border-radius: 6px; font-size: 12px; color: var(--text-3); }
.fi-langs span.on { border-color: var(--brand); color: var(--text); }

.fi-chart { display: flex; align-items: flex-end; gap: 8px; height: 110px; padding-bottom: 1px; border-bottom: 1px solid var(--line-strong); }
.fi-chart i { flex: 1; height: var(--h); border-radius: 4px 4px 0 0; background: #2a2a30; transform-origin: bottom; animation: fi-grow 3.5s cubic-bezier(.2,.7,.2,1) infinite; animation-delay: var(--d); }
.fi-chart i:last-child { background: var(--brand); }
@keyframes fi-grow { 0% { transform: scaleY(.1); } 30%, 100% { transform: scaleY(1); } }
.fi-kpi { margin: 0; color: var(--text-2); }
.fi-kpi b { color: var(--text); font-size: 15px; margin-right: 4px; }

.pl-uses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 900px; margin: 0 auto; }
.pl-use { display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 28px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); font-weight: 500; }
.pl-use .pl-feature-icon { margin: 0; }

/* Testimonials: rows of cards scrolling sideways, faded at the edges */
.pl-testimonials { overflow: hidden; }
.pl-trows { display: grid; gap: 16px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.pl-trow { overflow: hidden; }
.pl-ttrack { display: flex; width: max-content; animation: pl-marquee var(--dur, 60s) linear infinite; }
.pl-trow.is-reverse .pl-ttrack { animation-direction: reverse; }
.pl-tset { display: flex; gap: 16px; padding-right: 16px; }
.pl-tdup { display: contents; }
.pl-tcard { display: flex; flex-direction: column; justify-content: space-between; gap: 24px; width: 360px; margin: 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); }
.pl-tcard blockquote { margin: 0; font-size: 15px; line-height: 1.65; color: var(--text-2); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.pl-tcard mark { color: #fff; font-weight: 500; padding: 0 2px; border-radius: 3px;
	background: linear-gradient(transparent 55%, color-mix(in srgb, var(--brand) 38%, transparent) 55%);
	-webkit-box-decoration-break: clone; box-decoration-break: clone; }
.pl-tcard figcaption { display: flex; align-items: center; gap: 12px; }
.pl-tcard figcaption b { display: block; font-size: 14px; font-weight: 600; }
.pl-tcard figcaption small { display: block; font-size: 13px; color: var(--text-3); }
.pl-tavatar { width: 40px; height: 40px; flex: none; border-radius: 50%; object-fit: cover; }
.pl-tinitials { display: grid; place-items: center; background: var(--brand-tint); color: var(--brand); font-size: 14px; font-weight: 600; }
.pl-admin-hint { padding: 16px 20px; border: 1px dashed var(--line-strong); border-radius: var(--r); font-size: 14px; color: var(--text-2); text-align: center; }
.pl-admin-hint a { color: var(--brand); }

/* Refund guarantee */
.pl-guarantee { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 640px; margin: 32px auto 0; padding: 14px 20px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); }
.pl-guarantee p { font-size: 14.5px; color: var(--text-2); }
.pl-guarantee b { color: var(--text); font-weight: 600; }
.pl-guarantee-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--brand-tint); color: var(--brand); }
.pl-guarantee-icon .pl-i { width: 19px; height: 19px; }
.pl-plans-note { margin-top: 16px; }

/* Pricing page */
.pl-included { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 32px; max-width: 960px; margin: 0 auto; padding: 0; list-style: none; }
.pl-included li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-2); }
.pl-included .pl-i { width: 16px; height: 16px; color: var(--brand); stroke-width: 2.2; }
.pl-pricing-page #pricing { border-top: 0; padding-top: 0; }

/* Inner pages: hero, article text, listings, 404 ------------------------------ */
.pl-hero-page { padding-bottom: 56px; }
.pl-hero-page .pl-h1 { font-size: clamp(34px, 5vw, 52px); }
.pl-page-meta { margin-bottom: 14px; font-size: 14px; color: var(--text-3); }
.pl-article { padding-bottom: 96px; }

.pl-prose { max-width: 760px; font-size: 16.5px; line-height: 1.75; color: var(--text-2); }
.pl-prose > * + * { margin-top: 1.1em; }
.pl-prose h2, .pl-prose h3, .pl-prose h4 { color: var(--text); letter-spacing: -.02em; line-height: 1.3; font-weight: 600; scroll-margin-top: 90px; }
.pl-prose h2 { font-size: 26px; margin-top: 2em; }
.pl-prose h3 { font-size: 20px; margin-top: 1.7em; }
.pl-prose h4 { font-size: 17px; margin-top: 1.5em; }
.pl-prose a { color: var(--text); text-decoration: underline; text-decoration-color: var(--brand); text-underline-offset: 3px; }
.pl-prose a:hover { color: var(--brand); }
.pl-prose strong { color: var(--text); font-weight: 600; }
.pl-prose ul, .pl-prose ol { padding-left: 1.3em; }
.pl-prose li + li { margin-top: .4em; }
.pl-prose li::marker { color: var(--brand); }
.pl-prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.5em 0; }
.pl-prose img { border-radius: 10px; }
.pl-prose figcaption { margin-top: 8px; font-size: 14px; color: var(--text-3); text-align: center; }
.pl-prose blockquote { margin: 1.5em 0; padding: 4px 0 4px 20px; border-left: 2px solid var(--brand); color: var(--text); }
.pl-prose code { font-family: var(--mono); font-size: .88em; padding: .15em .4em; border-radius: 5px; background: #1c1c20; color: #ff8fd6; }
.pl-prose pre { overflow-x: auto; padding: 18px 20px; border: 1px solid var(--line); border-radius: 10px; background: #07070a; font-family: var(--mono); font-size: 14px; line-height: 1.6; color: #e4e4e7; }
.pl-prose pre code { padding: 0; background: none; color: inherit; font-size: inherit; }
.pl-prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.pl-prose th, .pl-prose td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.pl-prose th { color: var(--text); font-weight: 600; }
.pl-prose .wp-block-button__link { display: inline-flex; padding: 10px 18px; border-radius: 8px; background: var(--brand); color: #fff; text-decoration: none; font-weight: 600; font-size: 15px; }
.pl-prose .is-style-note, .pl-prose .is-style-tip, .pl-prose .is-style-warning, .pl-prose .is-style-danger { --c: #3b82f6; padding: 14px 18px; border: 1px solid color-mix(in srgb, var(--c) 35%, transparent); border-left: 3px solid var(--c); border-radius: 8px; background: color-mix(in srgb, var(--c) 8%, transparent); color: var(--text); }
.pl-prose .is-style-tip { --c: var(--brand); } .pl-prose .is-style-warning { --c: #f59e0b; } .pl-prose .is-style-danger { --c: #ef4444; }
.pl-cover { margin: 0 0 40px; }
.pl-cover img { width: 100%; }
.pl-post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 15px; }
.pl-post-nav a { text-decoration: none; color: var(--text-2); }
.pl-post-nav a:hover { color: var(--text); }
.pl-post-nav .next { margin-left: auto; text-align: right; }
.pl-article .pl-prose > :first-child { margin-top: 0; }

.pl-listing { padding-top: 0; border-top: 0 !important; }
.pl-listing-search { max-width: 560px; margin: 0 auto 40px; }
.pl-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pl-card-item a { display: block; height: 100%; padding: 24px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); transition: border-color .2s; }
.pl-card-item a:hover { border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.pl-card-meta { font-size: 13px; color: var(--text-3); }
.pl-card-item h2 { margin: 6px 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.pl-card-item p:last-child { font-size: 14.5px; color: var(--text-2); }
.pl-empty { max-width: 560px; margin: 0 auto; text-align: center; color: var(--text-2); }
.pl-empty .pl-searchform { margin-top: 20px; }
.pl-pagination { margin-top: 40px; }
.pl-pagination .nav-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.pl-pagination .page-numbers { padding: 7px 13px; border: 1px solid var(--line-strong); border-radius: 8px; font-size: 14px; color: var(--text-2); }
.pl-pagination .current { background: var(--brand); border-color: var(--brand); color: #fff; }

.pl-searchform { display: flex; gap: 8px; }
.pl-searchform input { flex: 1; min-width: 0; height: 44px; padding: 0 14px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--bg-raised); color: var(--text); font: 15px var(--font); }
.pl-searchform input:focus { outline: none; border-color: var(--brand); }
.pl-searchform .pl-btn { height: 44px; }

.pl-404 { padding-bottom: 140px; min-height: 70vh; }
.pl-404 .pl-hero-copy { padding-top: 40px; }
.pl-404-code { font-size: clamp(88px, 14vw, 140px); font-weight: 700; line-height: 1; letter-spacing: -.05em; color: var(--brand); margin-bottom: 12px; }

.pl-comments { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.pl-comments-title { font-size: 20px; color: var(--text); }
.pl-comment-list { list-style: none; padding: 0; }
.pl-comments textarea, .pl-comments input[type="text"], .pl-comments input[type="email"], .pl-comments input[type="url"] { width: 100%; padding: 10px 12px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--bg-raised); color: var(--text); font: 15px var(--font); }
.pl-comments .submit { height: 42px; padding: 0 18px; border: 0; border-radius: 8px; background: var(--brand); color: #fff; font: 600 14px var(--font); cursor: pointer; }
.alignleft { float: left; margin: 0 1.5em 1em 0; } .alignright { float: right; margin: 0 0 1em 1.5em; } .aligncenter { margin-left: auto; margin-right: auto; }

/* Mega menu ------------------------------------------------------------------- */
.pl-mega { position: relative; }
.pl-mega-toggle { display: flex; align-items: center; gap: 5px; padding: 6px 12px; border: 0; border-radius: 6px; background: none; color: var(--text-2); font: 14px var(--font); cursor: pointer; transition: color .15s; }
.pl-mega-toggle:hover, .pl-mega.is-open .pl-mega-toggle { color: var(--text); }
.pl-mega-toggle svg { transition: transform .2s ease; }
.pl-mega.is-open .pl-mega-toggle svg { transform: rotate(180deg); }
.pl-mega-panel {
	position: absolute; left: 50%; top: calc(100% + 14px); z-index: 120; width: 720px; padding: 12px;
	border: 1px solid var(--line-strong); border-radius: 14px;
	background: #111113;
	box-shadow: 0 30px 80px -20px rgb(0 0 0 / .9), 0 0 0 1px rgb(0 0 0 / .4);
	opacity: 0; visibility: hidden; transform: translate(-50%, -6px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.pl-mega-panel::before { content: ""; position: absolute; left: 0; right: 0; top: -16px; height: 16px; } /* hover bridge */
.pl-mega.is-open .pl-mega-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
@media (hover: hover) and (min-width: 861px) {
	.pl-mega:hover .pl-mega-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
	.pl-mega:hover .pl-mega-toggle { color: var(--text); }
	.pl-mega:hover .pl-mega-toggle svg { transform: rotate(180deg); }
}
.pl-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.pl-nav-list .pl-mega-item { display: flex; align-items: center; gap: 14px; padding: 10px; border-radius: 10px; color: inherit; transition: background-color .15s; }
.pl-mega-item:hover, .pl-mega-item:focus-visible { background: rgb(255 255 255 / .05); }
.pl-mega-item img { width: 104px; height: 65px; flex: none; object-fit: cover; border-radius: 8px; border: 1px solid var(--line-strong); transition: border-color .15s; }
.pl-mega-item:hover img { border-color: color-mix(in srgb, var(--brand) 60%, transparent); }
.pl-mega-item b { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.pl-mega-item small { display: block; margin-top: 2px; font-size: 13px; line-height: 1.4; color: var(--text-3); }
.pl-nav-list .pl-mega-all { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 8px; padding: 12px; border-top: 1px solid var(--line); font-size: 13.5px; color: var(--text-2); }
.pl-mega-all:hover { color: var(--brand); }
.pl-mega-all .pl-i { width: 14px; height: 14px; }

/* Audience pages ---------------------------------------------------------------- */
.pl-aud-hero { padding-bottom: 0; }
.pl-aud-shot { max-width: 960px; margin: 56px auto 0; border: 1px solid var(--line-strong); border-bottom: 0; border-radius: 16px 16px 0 0; overflow: hidden; -webkit-mask-image: linear-gradient(#000 65%, transparent); mask-image: linear-gradient(#000 65%, transparent); }
.pl-aud-shot img { display: block; width: 100%; height: auto; }
.pl-aud-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pl-aud-benefit { border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); }
.pl-aud-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pl-aud-feature { display: flex; align-items: flex-start; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--r); transition: border-color .2s; }
.pl-aud-feature:hover { border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.pl-aud-feature .pl-feature-icon { margin: 0; }
.pl-aud-feature b { display: block; font-size: 15px; font-weight: 600; }
.pl-aud-feature small { display: block; margin-top: 2px; font-size: 13.5px; color: var(--text-2); }
.pl-aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pl-aud-card { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-raised); transition: border-color .2s, transform .2s; }
.pl-aud-card:hover { border-color: color-mix(in srgb, var(--brand) 45%, transparent); transform: translateY(-2px); }
.pl-aud-card img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--line); }
.pl-aud-card span { display: block; padding: 18px 20px 20px; }
.pl-aud-card b { display: block; font-size: 16px; font-weight: 600; }
.pl-aud-card small { display: block; margin-top: 4px; font-size: 14px; color: var(--text-2); }

/* Billing switcher */
.pl-billing { display: flex; width: max-content; margin: -16px auto 40px; padding: 4px; gap: 4px; border: 1px solid var(--line-strong); border-radius: 10px; background: var(--bg-raised); }
.pl-billing-opt { height: 34px; padding: 0 18px; border: 0; border-radius: 7px; background: none; color: var(--text-2); font: 500 14px var(--font); cursor: pointer; transition: background-color .15s, color .15s; }
.pl-billing-opt:hover { color: var(--text); }
.pl-billing-opt[aria-pressed="true"] { background: var(--text); color: var(--bg); }
.pl-plan-period { display: flex; flex-direction: column; }
.pl-plans[data-billing="yearly"] [data-period="lifetime"],
.pl-plans[data-billing="lifetime"] [data-period="yearly"] { display: none; }

/* Footer */
.pl-footer { border-top: 1px solid var(--line); padding: 64px 0 32px; }
.pl-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.pl-footer-tag { margin-top: 12px; font-size: 14px; color: var(--text-3); }
.pl-footer-brand .pl-footer-h { margin-top: 32px; }
.pl-footer-h { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 14px; }
.pl-footer-small { margin: -8px 0 14px; font-size: 13.5px; color: var(--text-3); }
.pl-footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pl-footer-col a { font-size: 14px; color: var(--text-2); transition: color .15s; }
.pl-footer-col a:hover { color: var(--text); }
.pl-footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--text-3); }

.pl-subscribe { max-width: 380px; }
.pl-subscribe-row { display: flex; gap: 8px; }
.pl-subscribe input[type="email"] {
	flex: 1; min-width: 0; height: 40px; padding: 0 12px; border-radius: 8px;
	border: 1px solid var(--line-strong); background: var(--bg-raised); color: var(--text); font: 14px var(--font);
	transition: border-color .15s;
}
.pl-subscribe input[type="email"]::placeholder { color: var(--text-3); }
.pl-subscribe input[type="email"]:focus { outline: none; border-color: var(--brand); }
.pl-subscribe .pl-btn { height: 40px; }
.pl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.pl-subscribe-msg { margin-top: 10px; font-size: 13.5px; color: #6ee7b7; }
.pl-subscribe-msg.is-invalid { color: #fca5a5; }

/* Responsive ---------------------------------------------------------------------- */
@media (max-width: 1080px) {
	.pl-aud-grid, .pl-aud-features { grid-template-columns: repeat(2, 1fr); }
	.pv-body { grid-template-columns: 200px 1fr; }
	.pv-chat { display: none; }
	.pl-features { grid-template-columns: repeat(2, 1fr); }
	.pl-ai-grid { grid-template-columns: 1fr 1fr; }
	.pl-ai-card:last-child { grid-column: span 2; }
}

@media (max-width: 1080px) { .pl-orbit-section { --r: 280px; --tile: 54px; } }

@media (max-width: 860px) {
	.pl-nav { max-height: calc(100vh - 64px); overflow-y: auto; }
	.pl-mega-toggle { width: 100%; justify-content: space-between; padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
	.pl-mega-panel { position: static; width: auto; padding: 4px 0 8px; border: 0; background: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; display: none; opacity: 1; visibility: visible; }
	.pl-mega-panel::before { display: none; }
	.pl-mega.is-open .pl-mega-panel { display: block; transform: none; }
	.pl-mega-grid { grid-template-columns: 1fr; }
	.pl-nav-list .pl-mega-item { padding: 8px 0; border-bottom: 0; }
	.pl-nav-list .pl-mega-all { justify-content: flex-start; padding: 12px 0; border-bottom: 0; }
	.pl-mega-item img { width: 72px; height: 45px; }
	.pl-aud-benefits { grid-template-columns: 1fr; }
	.pl-chips {
		flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; scroll-snap-type: x proximity;
		margin-left: -24px; margin-right: -24px; padding: 2px 24px 6px; scrollbar-width: none;
		-webkit-mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 32px), transparent);
		mask-image: linear-gradient(90deg, transparent, #000 10px, #000 calc(100% - 32px), transparent);
	}
	.pl-chips::-webkit-scrollbar { display: none; }
	.pl-chips a { flex: none; white-space: nowrap; scroll-snap-align: start; }
	.pl-included { grid-template-columns: 1fr 1fr; }
	.pl-fgroup-inner { grid-template-columns: 1fr; gap: 28px; }
	.pl-fgroup-head { position: static; }
	.pl-uses { grid-template-columns: repeat(2, 1fr); }
	.pl-header-cta { display: inline-flex; margin-left: auto; }
	.pl-header-cta + .pl-burger { margin-left: 0; }
	.pl-header-inner { gap: 10px; }
	.pl-brand { margin-right: auto; }
	.pl-nav-actions .pl-btn-primary { display: none; }
	.pl-faq { grid-template-columns: 1fr; gap: 32px; }
	.pl-faq .pl-head { position: static; }
	.pl-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 40px 32px; }
	.pl-footer-brand { grid-column: 1 / -1; }
	.pl-burger { display: grid; }
	.pl-nav {
		position: fixed; left: 0; right: 0; top: 64px; z-index: 99;
		flex-direction: column; align-items: stretch; gap: 12px; padding: 12px 24px 24px;
		background: var(--bg); border-bottom: 1px solid var(--line);
		visibility: hidden; opacity: 0; transition: opacity .15s, visibility .15s;
	}
	.admin-bar .pl-nav { top: 110px; }
	.pl-nav-open .pl-nav { visibility: visible; opacity: 1; }
	.pl-nav-list { flex-direction: column; }
	.pl-nav-list a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--line); border-radius: 0; }
	.pl-nav-actions { margin: 8px 0 0; gap: 8px; }
	.pl-nav-actions .pl-btn { flex: 1; height: 42px; border: 1px solid var(--line-strong); }
	.pl-nav-actions .pl-btn-primary { border-color: transparent; }
	.pl-spot { grid-template-columns: 1fr; }
	.pl-plans { grid-template-columns: 1fr; max-width: 480px; }
	.pl-section { padding: 88px 0; }
}

@media (max-width: 720px) {
	.pl-orbit-section { padding-top: 72px; }
	.pl-orbit-stage { height: auto; -webkit-mask-image: none; mask-image: none; }
	.pl-orbit-stage::before, .pl-orbit { display: none; }
	.pl-orbit-copy { margin-bottom: 36px; }
	.pl-marquee { display: block; }
}

@media (max-width: 640px) {
	.pl-aud-grid, .pl-aud-features { grid-template-columns: 1fr; }
	.pl-aud-shot { margin-top: 40px; }
	.pl-cards { grid-template-columns: 1fr; }
	.pl-searchform { flex-direction: column; }
	.pl-chips { margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
	.pl-included { grid-template-columns: 1fr; }
	.pl-guarantee { align-items: flex-start; justify-content: flex-start; }
	.pl-tcard { width: 290px; }
	.pl-fgrid { grid-template-columns: 1fr; }
	.pl-fill { height: 180px; }
	.pl-fgroup { padding: 64px 0; }
	.ed-win { left: 16px; right: 16px; }
	.ed-body { padding-right: 64px; }
	.kb-deck { width: 86%; }
	.pl-hero { padding-top: 128px; }
	.pl-hero-copy { text-align: left; }
	.pl-hero-copy .pl-actions { justify-content: flex-start; }
	.pl-footer-grid { grid-template-columns: 1fr 1fr; }
	.pl-wrap { padding: 0 16px; }
	.pl-lead { font-size: 16.5px; }
	.pl-actions .pl-btn { flex: 1 1 100%; }
	.pl-preview { margin-top: 48px; }
	.pv-body { grid-template-columns: 1fr; min-height: 340px; }
	.pv-side { display: none; }
	.pv-main { padding: 24px 20px; }
	.pv-url { padding-right: 0; font-size: 11px; }
	.pl-spot-item, .pl-feature { padding: 24px 20px; }
	.vis-blocks { grid-template-columns: repeat(2, 1fr); }
	.pl-features { grid-template-columns: 1fr; }
	.pl-ai-grid { grid-template-columns: 1fr; }
	.pl-ai-card:last-child { grid-column: auto; }
	.pl-section { padding: 72px 0; }
	.pl-head { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
	.fi-typed { width: 7ch; }
	.fi-results { opacity: 1; }
	.pl-reveal { opacity: 1; transform: none; }
	.ed-block.b-callout, .kb-card.c1, .kb-labels .l1, .ai-reply, .ai-source { opacity: 1; }
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}
