/* ============================================================
   PodToolbox v2.0 — Premium SaaS design system
   Inspired by: Linear, Vercel, Raycast, Huly
   Brand: Podwires (#4840B0)
   ============================================================ */

/* ---- Inter font ---- */
@import url('https://rsms.me/inter/inter.css');

/* ---- Design tokens ---- */
:root {
	/* Brand */
	--pt-accent:        #6E63E0;
	--pt-accent-hi:     #8B82F0;
	--pt-accent-deep:   #4840B0;
	--pt-accent-fg:     #ffffff;

	/* Light theme — matches podwires.com (#ffffff) */
	--pt-bg:            #ffffff;
	--pt-bg-soft:       #f6f6fb;
	--pt-surface:       #ffffff;
	--pt-surface-2:     #fafafd;
	--pt-border:        #e8e8ef;
	--pt-border-hi:     #d8d8e3;
	--pt-ink:           #0d0c1f;
	--pt-ink-2:         #383655;
	--pt-muted:         #6b6989;
	--pt-light:         #9695b3;

	/* Effects */
	--pt-shadow-sm:     0 1px 2px rgba(13,12,31,.04);
	--pt-shadow:        0 1px 3px rgba(13,12,31,.06), 0 6px 24px rgba(13,12,31,.04);
	--pt-shadow-lg:     0 10px 40px -12px rgba(13,12,31,.18);
	--pt-shadow-glow:   0 0 0 1px rgba(110,99,224,.18), 0 12px 32px -8px rgba(110,99,224,.32);
	--pt-radius:        14px;
	--pt-radius-sm:     10px;
	--pt-radius-xs:     6px;

	/* Motion */
	--pt-ease:          cubic-bezier(.2,.7,.2,1);
	--pt-fast:          .14s var(--pt-ease);
	--pt-med:           .26s var(--pt-ease);

	/* Type */
	--pt-font:          'Inter','InterVariable',-apple-system,BlinkMacSystemFont,'Segoe UI',Helvetica,Arial,sans-serif;
	--pt-font-mono:     'JetBrains Mono',ui-monospace,SFMono-Regular,Menlo,monospace;

	/* Layout */
	--pt-container:     1240px;
	--pt-bar-h:         64px;
}

/* ---- Dark theme ---- */
[data-pt-theme="dark"] {
	--pt-bg:            #0a0913;
	--pt-bg-soft:       #0f0e1c;
	--pt-surface:       #14132a;
	--pt-surface-2:     #1a1933;
	--pt-border:        #25243f;
	--pt-border-hi:     #34334f;
	--pt-ink:           #f4f3ff;
	--pt-ink-2:         #d8d6ee;
	--pt-muted:         #9b99c0;
	--pt-light:         #6e6c8e;
	--pt-shadow:        0 1px 2px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.4);
	--pt-shadow-lg:     0 16px 40px -10px rgba(0,0,0,.6);
	--pt-shadow-glow:   0 0 0 1px rgba(139,130,240,.3), 0 12px 40px -6px rgba(110,99,224,.45);
}

@media (prefers-color-scheme: dark) {
	:root:not([data-pt-theme]) {
		--pt-bg: #0a0913; --pt-bg-soft:#0f0e1c; --pt-surface:#14132a; --pt-surface-2:#1a1933;
		--pt-border:#25243f; --pt-border-hi:#34334f; --pt-ink:#f4f3ff; --pt-ink-2:#d8d6ee;
		--pt-muted:#9b99c0; --pt-light:#6e6c8e;
	}
}

/* ---- Body scope (only on PodToolbox pages) ---- */
body.podtoolbox-app {
	background: var(--pt-bg);
	color: var(--pt-ink);
	font-family: var(--pt-font);
	font-feature-settings: 'cv11','ss01','ss03';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@supports (font-variation-settings: normal) {
	body.podtoolbox-app { font-family: 'InterVariable', var(--pt-font); }
}

/* ============================================================
   BRAND MARK — Podwires.
   ============================================================ */
.pt-brand {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	text-decoration: none;
	font-family: var(--pt-font);
	line-height: 1;
}
.pt-brand-mark {
	font-size: 1.5rem;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--pt-ink);
	line-height: 1;
}
.pt-brand-dot { color: var(--pt-accent); }
.pt-brand-tag {
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--pt-accent);
	padding: 4px 8px;
	border: 1px solid currentColor;
	border-radius: 4px;
	line-height: 1;
}

/* ============================================================
   STICKY GLASS NAVBAR
   ============================================================ */
.pt-bar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: color-mix(in srgb, var(--pt-bg) 78%, transparent);
	-webkit-backdrop-filter: saturate(180%) blur(16px);
	backdrop-filter: saturate(180%) blur(16px);
	border-bottom: 1px solid var(--pt-border);
	height: var(--pt-bar-h);
}
.pt-bar-inner {
	max-width: var(--pt-container);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 24px;
	height: 100%;
}
.pt-bar-nav { display: flex; align-items: center; gap: 6px; }
.pt-bar-nav a {
	font-size: 13.5px;
	font-weight: 500;
	color: var(--pt-ink-2);
	text-decoration: none;
	padding: 8px 12px;
	border-radius: var(--pt-radius-xs);
	transition: color var(--pt-fast), background var(--pt-fast);
}
.pt-bar-nav a:hover { color: var(--pt-ink); background: var(--pt-surface-2); }

.pt-bar-search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 7px 12px 7px 14px;
	color: var(--pt-muted);
	font-size: 13px;
	cursor: pointer;
	min-width: 220px;
	transition: border-color var(--pt-fast), background var(--pt-fast);
}
.pt-bar-search:hover { border-color: var(--pt-border-hi); }
.pt-bar-search-kbd {
	margin-left: auto;
	font-family: var(--pt-font);
	font-size: 11px;
	font-weight: 600;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	border-radius: 4px;
	padding: 2px 6px;
	color: var(--pt-muted);
}

.pt-bar-cta {
	background: linear-gradient(135deg, #6E63E0 0%, #4840B0 100%);
	color: #ffffff !important;
	padding: 9px 18px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(72, 64, 176, .35);
	transition: transform var(--pt-fast), box-shadow var(--pt-fast), opacity var(--pt-fast);
}
.pt-bar-cta:hover { color: #ffffff !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(72, 64, 176, .5); opacity: 1; }

/* Hide host theme's redundant page chrome on PodToolbox app pages */
body.podtoolbox-app .wp-block-site-title,
body.podtoolbox-app .wp-block-post-title,
body.podtoolbox-app .entry-title,
body.podtoolbox-app .page-title,
body.podtoolbox-app header.wp-block-template-part .wp-block-site-title,
body.podtoolbox-app .wp-block-post-title + *:empty { display: none !important; }
body.podtoolbox-app .wp-block-group:has(> .wp-block-post-title:only-child) { display: none !important; }

.pt-theme-toggle {
	background: transparent;
	border: 1px solid var(--pt-border);
	color: var(--pt-ink-2);
	width: 36px; height: 36px;
	border-radius: var(--pt-radius-xs);
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: all var(--pt-fast);
}
.pt-theme-toggle:hover { background: var(--pt-surface-2); color: var(--pt-ink); }
.pt-theme-toggle svg { width: 16px; height: 16px; }
.pt-theme-toggle .pt-icon-sun { display: none; }
[data-pt-theme="dark"] .pt-theme-toggle .pt-icon-sun { display: block; }
[data-pt-theme="dark"] .pt-theme-toggle .pt-icon-moon { display: none; }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.pt-wrap, .pt-archive, .pt-single {
	max-width: var(--pt-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* ============================================================
   HERO — gradient mesh + density
   ============================================================ */
.pt-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 32px 80px;
	margin-top: 32px;
	border-radius: 24px;
	background:
		radial-gradient(ellipse 80% 60% at 20% 0%, rgba(110,99,224,.35), transparent 60%),
		radial-gradient(ellipse 60% 80% at 100% 100%, rgba(72,64,176,.4), transparent 55%),
		radial-gradient(ellipse 80% 50% at 50% 100%, rgba(139,130,240,.25), transparent 60%),
		linear-gradient(180deg, #0d0c1f 0%, #1a1933 100%);
	color: #fff;
	text-align: center;
	isolation: isolate;
	max-width: var(--pt-container);
	margin-left: auto;
	margin-right: auto;
}
.pt-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
	z-index: -1;
}
.pt-hero .pt-brand { justify-content: center; margin-bottom: 28px; }
.pt-hero .pt-brand-mark { color: #fff; }
.pt-hero .pt-brand-dot  { color: var(--pt-accent-hi); }
.pt-hero .pt-brand-tag  { color: #fff; border-color: rgba(255,255,255,.5); }

.pt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.16);
	color: rgba(255,255,255,.85);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 22px;
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}
.pt-eyebrow-dot {
	width: 6px; height: 6px;
	background: #4ade80;
	border-radius: 50%;
	box-shadow: 0 0 0 4px rgba(74,222,128,.2);
}

.pt-hero h1 {
	font-size: clamp(34px, 5.2vw, 64px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.04;
	margin: 0 auto 18px;
	max-width: 820px;
	color: #fff;
	background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,.7) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.pt-hero p.pt-sub {
	font-size: 17px;
	line-height: 1.6;
	max-width: 560px;
	margin: 0 auto 36px;
	color: rgba(255,255,255,.72);
}

.pt-hero-search {
	display: flex;
	max-width: 580px;
	margin: 0 auto 16px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 999px;
	padding: 6px;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	transition: border-color var(--pt-fast), box-shadow var(--pt-fast);
}
.pt-hero-search:focus-within {
	border-color: rgba(255,255,255,.4);
	box-shadow: 0 0 0 4px rgba(255,255,255,.08);
}
.pt-hero-search input[type="search"] {
	flex: 1;
	border: none;
	outline: none;
	padding: 12px 18px;
	font-size: 15px;
	background: transparent;
	color: #fff;
	font-family: inherit;
}
.pt-hero-search input::placeholder { color: rgba(255,255,255,.55); }
.pt-hero-search button {
	background: #fff;
	color: var(--pt-accent-deep);
	border: none;
	padding: 12px 26px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: transform var(--pt-fast);
	font-family: inherit;
}
.pt-hero-search button:hover { transform: translateY(-1px); }

.pt-hero-meta {
	display: inline-flex;
	gap: 24px;
	margin-top: 32px;
	color: rgba(255,255,255,.6);
	font-size: 13px;
}
.pt-hero-meta strong { color: #fff; font-weight: 600; }

/* ============================================================
   SECTIONS
   ============================================================ */
.pt-section { margin: 80px 0; }
.pt-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 28px;
	gap: 16px;
}
.pt-section-head h2 {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--pt-ink);
}
.pt-section-head .pt-section-sub {
	font-size: 14px;
	color: var(--pt-muted);
	margin: 4px 0 0;
}
.pt-section-head a {
	color: var(--pt-accent);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}
.pt-section-head a:hover { color: var(--pt-accent-hi); }

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.pt-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}
.pt-cat-card {
	position: relative;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 18px 20px;
	text-decoration: none;
	color: var(--pt-ink);
	transition: all var(--pt-med);
	display: flex;
	flex-direction: column;
	gap: 6px;
	overflow: hidden;
}
.pt-cat-card::after {
	content: '→';
	position: absolute;
	top: 18px;
	right: 18px;
	color: var(--pt-light);
	font-size: 16px;
	transition: transform var(--pt-fast), color var(--pt-fast);
}
.pt-cat-card:hover {
	border-color: var(--pt-accent);
	background: var(--pt-surface);
	transform: translateY(-2px);
	box-shadow: var(--pt-shadow-glow);
}
.pt-cat-card:hover::after { transform: translateX(3px); color: var(--pt-accent); }
.pt-cat-name { font-weight: 600; font-size: 14.5px; letter-spacing: -0.01em; }
.pt-cat-count { font-size: 12px; color: var(--pt-muted); font-weight: 500; }

/* ============================================================
   RESOURCE GRID + CARDS
   ============================================================ */
.pt-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 16px;
}
.pt-card {
	position: relative;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius);
	padding: 22px;
	transition: all var(--pt-med);
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 200px;
}
.pt-card:hover {
	border-color: var(--pt-border-hi);
	transform: translateY(-3px);
	box-shadow: var(--pt-shadow-lg);
}
.pt-card.is-featured {
	background: linear-gradient(180deg, var(--pt-surface) 0%, var(--pt-surface-2) 100%);
	border-color: var(--pt-accent);
}
[data-pt-theme="dark"] .pt-card.is-featured,
@media (prefers-color-scheme: dark) { .pt-card.is-featured { background: linear-gradient(180deg, #1a1933 0%, #14132a 100%); } }

.pt-card-head { display: flex; gap: 12px; align-items: flex-start; }
.pt-favicon {
	width: 38px; height: 38px;
	border-radius: 9px;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	font-weight: 700;
	color: var(--pt-accent);
	font-size: 15px;
}
.pt-favicon img { width: 100%; height: 100%; object-fit: cover; }
.pt-card-head h3 {
	font-size: 16px;
	margin: 0 0 2px;
	line-height: 1.3;
	font-weight: 600;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 6px;
}
.pt-card-head h3 a { color: var(--pt-ink); text-decoration: none; }
.pt-card-head h3 a:hover { color: var(--pt-accent); }
.pt-card-cat {
	font-size: 11.5px;
	font-weight: 500;
	color: var(--pt-muted);
}
.pt-card-desc {
	margin: 0;
	font-size: 13.5px;
	color: var(--pt-ink-2);
	line-height: 1.55;
	flex: 1;
}
.pt-card-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}
.pt-card-link {
	color: var(--pt-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.pt-card-link:hover { color: var(--pt-accent-hi); }
.pt-card-link::after {
	content: '↗';
	transition: transform var(--pt-fast);
}
.pt-card-link:hover::after { transform: translate(2px,-2px); }

.pt-pill {
	font-size: 11px;
	font-weight: 600;
	background: var(--pt-bg-soft);
	color: var(--pt-muted);
	padding: 4px 10px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	letter-spacing: 0.01em;
}
.pt-pill-price { background: rgba(110,99,224,.1); color: var(--pt-accent); }
.pt-pill-free  { background: rgba(34,197,94,.12); color: #16a34a; }
[data-pt-theme="dark"] .pt-pill-free { color: #4ade80; background: rgba(74,222,128,.15); }

.pt-badge-featured {
	position: absolute;
	top: -10px;
	right: 18px;
	background: var(--pt-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(110,99,224,.4);
}
.pt-verified-tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px; height: 16px;
	background: var(--pt-accent);
	color: #fff;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 700;
	flex-shrink: 0;
}

/* ============================================================
   FILTERS — sticky sidebar feel
   ============================================================ */
.pt-filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	padding: 14px;
	border-radius: var(--pt-radius);
	margin-bottom: 24px;
	align-items: center;
}
.pt-filters input[type="search"],
.pt-filters select {
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	padding: 9px 14px;
	font-size: 14px;
	font-family: inherit;
	background: var(--pt-bg-soft);
	color: var(--pt-ink);
	transition: border-color var(--pt-fast), box-shadow var(--pt-fast);
}
.pt-filters input[type="search"]:focus,
.pt-filters select:focus {
	outline: none;
	border-color: var(--pt-accent);
	box-shadow: 0 0 0 3px rgba(110,99,224,.15);
}
.pt-filters input[type="search"] { flex: 1; min-width: 220px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.pt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: var(--pt-radius-sm);
	font-weight: 600;
	font-size: 14px;
	border: 1px solid var(--pt-border);
	background: var(--pt-surface);
	color: var(--pt-ink);
	text-decoration: none;
	cursor: pointer;
	transition: all var(--pt-fast);
	font-family: inherit;
	line-height: 1.2;
}
.pt-btn:hover { border-color: var(--pt-accent); color: var(--pt-accent); }
.pt-btn-primary {
	background: var(--pt-ink);
	color: var(--pt-bg);
	border-color: var(--pt-ink);
}
.pt-btn-primary:hover {
	background: var(--pt-accent);
	border-color: var(--pt-accent);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--pt-shadow-glow);
}
.pt-btn-ghost {
	background: rgba(255,255,255,.08);
	color: #fff;
	border-color: rgba(255,255,255,.2);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
.pt-btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }

/* ============================================================
   SINGLE RESOURCE
   ============================================================ */
.pt-single { padding-top: 32px; padding-bottom: 60px; }
.pt-breadcrumb { font-size: 13px; color: var(--pt-muted); margin-bottom: 14px; }
.pt-breadcrumb a { color: var(--pt-accent); text-decoration: none; }
.pt-breadcrumb a:hover { color: var(--pt-accent-hi); }

.pt-single-head {
	display: flex;
	gap: 28px;
	justify-content: space-between;
	align-items: flex-start;
	padding: 32px;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius);
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.pt-single-head h1 {
	margin: 0 0 12px;
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 700;
	letter-spacing: -0.025em;
	color: var(--pt-ink);
	display: flex;
	align-items: center;
	gap: 10px;
}
.pt-verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--pt-accent);
	color: #fff;
	font-size: 14px;
	width: 28px; height: 28px;
	border-radius: 50%;
}
.pt-lead { font-size: 17px; color: var(--pt-ink-2); margin: 0 0 16px; line-height: 1.5; }
.pt-pills { display: flex; gap: 6px; flex-wrap: wrap; }

.pt-single-body {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 36px;
}
.pt-single-content h3 {
	font-size: 18px;
	margin: 28px 0 10px;
	color: var(--pt-ink);
	font-weight: 600;
	letter-spacing: -0.01em;
}
.pt-single-content p, .pt-single-content li { color: var(--pt-ink-2); line-height: 1.7; font-size: 15px; }

.pt-side-card {
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius);
	padding: 22px;
	margin-bottom: 16px;
	position: sticky;
	top: calc(var(--pt-bar-h) + 24px);
}
.pt-side-card h4 {
	margin: 0 0 14px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--pt-light);
	font-weight: 600;
}
.pt-side-card dl { margin: 0; }
.pt-side-card dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pt-light); margin-top: 14px; font-weight: 600; }
.pt-side-card dd { margin: 4px 0 0; font-size: 14px; color: var(--pt-ink); font-weight: 500; }

@media (max-width: 960px) {
	.pt-single-body { grid-template-columns: 1fr; }
	.pt-side-card { position: static; }
	.pt-single-head { flex-direction: column; padding: 24px; }
}

/* ============================================================
   FORMS
   ============================================================ */
.pt-form {
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	padding: 36px;
	border-radius: var(--pt-radius);
	max-width: 720px;
	margin: 32px auto;
}
.pt-form h2 { margin: 0 0 8px; color: var(--pt-ink); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.pt-form h3 { margin: 0 0 14px; color: var(--pt-ink); font-size: 18px; font-weight: 600; }
.pt-form-intro { color: var(--pt-muted); margin: 0 0 24px; font-size: 14.5px; line-height: 1.55; }
.pt-form label {
	display: block;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--pt-ink);
}
.pt-form input[type="text"],
.pt-form input[type="url"],
.pt-form input[type="email"],
.pt-form select,
.pt-form textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 11px 14px;
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius-sm);
	font-family: inherit;
	font-size: 14px;
	color: var(--pt-ink);
	background: var(--pt-bg-soft);
	font-weight: 400;
	transition: border-color var(--pt-fast), box-shadow var(--pt-fast);
}
.pt-form input:focus,
.pt-form select:focus,
.pt-form textarea:focus {
	outline: none;
	border-color: var(--pt-accent);
	box-shadow: 0 0 0 3px rgba(110,99,224,.15);
	background: var(--pt-surface);
}
.pt-form textarea { resize: vertical; min-height: 76px; }
.pt-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.pt-form-compact { padding: 24px; }

.pt-flash {
	padding: 14px 18px;
	border-radius: var(--pt-radius-sm);
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 10px;
}
.pt-flash.is-ok    { background: rgba(34,197,94,.1); color: #16a34a; border: 1px solid rgba(34,197,94,.25); }
.pt-flash.is-error { background: rgba(239,68,68,.1); color: #dc2626; border: 1px solid rgba(239,68,68,.25); }

.pt-empty { color: var(--pt-muted); padding: 60px; text-align: center; font-size: 14px; }

/* ============================================================
   ARCHIVE
   ============================================================ */
.pt-archive { padding-top: 32px; padding-bottom: 60px; }
.pt-archive-head { margin-bottom: 28px; }
.pt-archive-head h1 { margin: 0 0 8px; font-size: 32px; font-weight: 700; letter-spacing: -0.025em; color: var(--pt-ink); }
.pt-archive-head p { color: var(--pt-muted); margin: 0; font-size: 15px; }

/* ============================================================
   COMMAND PALETTE (⌘K)
   ============================================================ */
.pt-cmdk {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: none;
	align-items: flex-start;
	justify-content: center;
	padding-top: 12vh;
	background: rgba(10,9,19,.6);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.pt-cmdk.is-open { display: flex; }
.pt-cmdk-panel {
	width: min(640px, 92vw);
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: var(--pt-radius);
	box-shadow: 0 30px 80px -10px rgba(0,0,0,.5);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	max-height: 76vh;
}
.pt-cmdk-input {
	width: 100%;
	border: none;
	outline: none;
	padding: 18px 22px;
	font-size: 15px;
	font-family: inherit;
	background: var(--pt-surface);
	color: var(--pt-ink);
	border-bottom: 1px solid var(--pt-border);
}
.pt-cmdk-list { overflow-y: auto; padding: 8px; }
.pt-cmdk-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: var(--pt-radius-sm);
	color: var(--pt-ink);
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
}
.pt-cmdk-item:hover, .pt-cmdk-item.is-active { background: var(--pt-bg-soft); }
.pt-cmdk-item-meta { margin-left: auto; font-size: 12px; color: var(--pt-muted); }
.pt-cmdk-empty { padding: 32px; text-align: center; color: var(--pt-muted); font-size: 14px; }

/* ============================================================
   INSTALL APP BUTTON
   ============================================================ */
#pt-install-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 90;
	background: var(--pt-ink);
	color: var(--pt-bg);
	border: none;
	padding: 12px 20px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 13.5px;
	font-family: var(--pt-font);
	cursor: pointer;
	box-shadow: var(--pt-shadow-lg);
	transition: transform var(--pt-fast), background var(--pt-fast);
}
#pt-install-btn:hover { background: var(--pt-accent); color: #fff; transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
	.pt-section { margin: 56px 0; }
	.pt-section-head h2 { font-size: 24px; }
	.pt-hero { padding: 72px 24px 64px; }
	.pt-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
	.pt-cat-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
	.pt-bar-search { display: none; }
}

@media (max-width: 600px) {
	.pt-form-grid { grid-template-columns: 1fr; gap: 0; }
	.pt-hero { padding: 56px 20px 48px; border-radius: 18px; margin-top: 16px; }
	.pt-hero h1 { font-size: 32px; }
	.pt-hero p.pt-sub { font-size: 15px; margin-bottom: 28px; }
	.pt-hero-search { flex-direction: column; border-radius: var(--pt-radius); padding: 8px; gap: 8px; }
	.pt-hero-search input[type="search"] { padding: 14px 16px; font-size: 16px; }
	.pt-hero-search button { border-radius: var(--pt-radius-sm); padding: 14px; width: 100%; font-size: 16px; }
	.pt-hero-meta { flex-wrap: wrap; gap: 14px; justify-content: center; font-size: 12px; }
	.pt-section-head { flex-direction: column; align-items: flex-start; gap: 4px; }
	.pt-section-head h2 { font-size: 22px; }
	.pt-grid { grid-template-columns: 1fr; gap: 12px; }
	.pt-cat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
	.pt-cat-card { padding: 14px 16px; }
	.pt-card { padding: 18px; min-height: 0; }
	.pt-filters { padding: 12px; flex-direction: column; }
	.pt-filters input[type="search"], .pt-filters select { width: 100%; font-size: 16px; }
	.pt-form { padding: 22px 18px; }
	.pt-form input, .pt-form select, .pt-form textarea { font-size: 16px; }
	.pt-single { padding-top: 20px; }
	.pt-single-head { padding: 22px; gap: 16px; }
	.pt-single-head h1 { font-size: 24px; }
	.pt-archive-head h1 { font-size: 24px; }
	.pt-bar-inner { padding: 0 16px; }
	.pt-bar-nav { gap: 2px; }
	.pt-bar-nav a { padding: 8px 8px; font-size: 13px; }
	.pt-bar-cta { padding: 7px 12px; font-size: 12px; }
	.pt-brand-mark { font-size: 1.2rem; }
	.pt-brand-tag { font-size: 0.45rem; padding: 3px 6px; }
}

@media (hover: none) and (pointer: coarse) {
	.pt-card-link, .pt-cat-card { min-height: 44px; }
	.pt-btn, .pt-bar-cta { min-height: 40px; }
}

@supports (padding: max(0px)) {
	.pt-hero, .pt-archive, .pt-single, .pt-form, .pt-bar-inner {
		padding-left: max(env(safe-area-inset-left), 16px);
		padding-right: max(env(safe-area-inset-right), 16px);
	}
}

@media (display-mode: standalone) {
	body { overscroll-behavior-y: contain; }
}

/* ===== Explore Tools (sidebar + grid) ===== */
.pt-explore {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	max-width: 1280px;
	margin: 32px auto;
	padding: 0 24px;
}
.pt-explore-side-inner {
	position: sticky;
	top: 80px;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 16px;
	padding: 20px;
	max-height: calc(100vh - 100px);
	overflow-y: auto;
}
.pt-side-section + .pt-side-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--pt-border); }
.pt-side-title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--pt-muted);
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
}
.pt-side-count {
	background: var(--pt-bg);
	border: 1px solid var(--pt-border);
	color: var(--pt-muted);
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 10px;
}
.pt-side-list { list-style: none; margin: 0; padding: 0; }
.pt-side-list li { margin: 0; }
.pt-side-list a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 10px;
	border-radius: 8px;
	color: var(--pt-ink-2);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background var(--pt-fast), color var(--pt-fast);
}
.pt-side-list a:hover { background: var(--pt-bg); color: var(--pt-ink); }
.pt-side-list a.is-active {
	background: linear-gradient(135deg, rgba(110,99,224,.15), rgba(72,64,176,.1));
	color: var(--pt-accent);
}
.pt-side-list a em {
	font-style: normal;
	font-size: 11px;
	color: var(--pt-muted);
	font-weight: 600;
}
.pt-side-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pt-pill-link {
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--pt-bg);
	border: 1px solid var(--pt-border);
	color: var(--pt-ink-2);
	text-decoration: none;
	font-weight: 500;
}
.pt-pill-link:hover { border-color: var(--pt-accent); color: var(--pt-accent); }
.pt-pill-link.is-active {
	background: var(--pt-accent);
	color: #fff;
	border-color: var(--pt-accent);
}

.pt-explore-main { min-width: 0; }
.pt-explore-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}
.pt-explore-h1 {
	font-size: 32px;
	font-weight: 700;
	letter-spacing: -.02em;
	margin: 0 0 4px;
	color: var(--pt-ink);
}
.pt-explore-sub { color: var(--pt-muted); margin: 0; font-size: 14px; }
.pt-explore-search {
	display: flex;
	gap: 6px;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 12px;
	padding: 4px 4px 4px 12px;
	min-width: 280px;
}
.pt-explore-search input {
	border: 0;
	background: transparent;
	flex: 1;
	font-size: 14px;
	color: var(--pt-ink);
	outline: none;
}
.pt-explore-search button {
	background: var(--pt-accent);
	color: #fff;
	border: 0;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 16px;
	cursor: pointer;
}

.pt-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.pt-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--pt-bg);
	border: 1px solid var(--pt-border);
	color: var(--pt-ink-2);
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 500;
	text-transform: capitalize;
}
.pt-chip a {
	color: var(--pt-muted);
	text-decoration: none;
	font-size: 14px;
	line-height: 1;
}
.pt-chip a:hover { color: var(--pt-accent); }
.pt-chip-clear {
	font-size: 12px;
	color: var(--pt-accent);
	text-decoration: none;
	font-weight: 600;
	padding: 4px 8px;
}

.pt-grid--explore {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 16px;
}

@media (max-width: 960px) {
	.pt-explore { grid-template-columns: 1fr; gap: 20px; padding: 0 16px; }
	.pt-explore-side-inner { position: static; max-height: none; }
	.pt-explore-h1 { font-size: 24px; }
	.pt-explore-search { min-width: 0; width: 100%; }
}

/* ===== Featured Tools section ===== */
.pt-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.pt-section-head h2 { margin: 0; }
.pt-section-link {
	color: var(--pt-accent);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}
.pt-section-link:hover { color: var(--pt-accent-hi); }

.pt-featured-section {
	max-width: var(--pt-container);
	margin: 0 auto;
	padding: 32px 24px;
}
.pt-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 0 auto;
}
.pt-featured-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .pt-featured-grid, .pt-featured-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 600px)  { .pt-featured-grid, .pt-featured-grid--4 { grid-template-columns: 1fr; gap: 14px; } }
.pt-fcard {
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 18px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: transform var(--pt-fast), box-shadow var(--pt-fast), border-color var(--pt-fast);
}
.pt-fcard:hover {
	transform: translateY(-2px);
	box-shadow: var(--pt-shadow-glow);
	border-color: var(--pt-accent);
}
.pt-fcard-head { display: flex; gap: 16px; align-items: flex-start; }
.pt-fcard-logo {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--pt-bg-soft);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid var(--pt-border);
}
.pt-fcard-logo.has-ring {
	box-shadow: 0 0 0 3px var(--pt-surface), 0 0 0 5px var(--pt-accent);
	border-color: transparent;
}
.pt-fcard-logo img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.pt-fcard-logo span {
	font-weight: 700;
	font-size: 24px;
	color: var(--pt-accent);
}
.pt-fcard-meta { flex: 1; min-width: 0; }
.pt-fcard-eyebrow {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--pt-accent);
	margin-bottom: 6px;
}
.pt-fcard-name { margin: 0 0 4px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.pt-fcard-name a { color: var(--pt-ink); text-decoration: none; }
.pt-fcard-name a:hover { color: var(--pt-accent); }
.pt-fcard-for { margin: 0 0 10px; font-size: 14px; color: var(--pt-muted); }
.pt-fcard-for a { color: var(--pt-accent); text-decoration: none; font-weight: 500; }
.pt-fcard-for a:hover { text-decoration: underline; }
.pt-fcard-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.pt-fcard-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
}
.pt-pill-verified {
	background: rgba(110, 99, 224, .12);
	color: var(--pt-accent);
}
.pt-pill-free {
	background: rgba(110, 99, 224, .08);
	color: var(--pt-accent-deep);
	border: 1px solid rgba(110, 99, 224, .2);
}
[data-pt-theme="dark"] .pt-pill-free { color: var(--pt-accent-hi); }
.pt-fcard-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	color: var(--pt-ink-2);
}
.pt-fcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.pt-fcard-tag {
	font-size: 12px;
	color: var(--pt-ink-2);
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	padding: 5px 12px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 500;
	transition: all var(--pt-fast);
}
.pt-fcard-tag:hover { border-color: var(--pt-accent); color: var(--pt-accent); }

@media (max-width: 720px) {
	.pt-fcard { padding: 18px; }
	.pt-fcard-logo { width: 52px; height: 52px; }
}

/* ===== Single Tool page (startupstash-inspired, Podwires brand) ===== */
.pt-tool {
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 24px 80px;
}
.pt-tool-crumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 13px;
	color: var(--pt-muted);
	margin-bottom: 20px;
}
.pt-tool-crumb a { color: var(--pt-muted); text-decoration: none; }
.pt-tool-crumb a:hover { color: var(--pt-accent); }
.pt-tool-crumb .pt-crumb-current { color: var(--pt-ink); font-weight: 500; }

.pt-tool-hero {
	position: relative;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 24px;
	padding: 36px;
	overflow: hidden;
	margin-bottom: 32px;
}
.pt-tool-hero-bg {
	position: absolute; inset: 0;
	background:
		radial-gradient(ellipse 60% 80% at 0% 0%, rgba(110,99,224,.18), transparent 60%),
		radial-gradient(ellipse 40% 60% at 100% 100%, rgba(72,64,176,.12), transparent 55%);
	pointer-events: none;
}
.pt-tool-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: center;
}
.pt-tool-logo {
	width: 96px; height: 96px;
	border-radius: 50%;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}
.pt-tool-logo.has-ring {
	box-shadow: 0 0 0 4px var(--pt-surface), 0 0 0 6px var(--pt-accent);
	border-color: transparent;
}
.pt-tool-logo img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.pt-tool-logo span { font-size: 36px; font-weight: 700; color: var(--pt-accent); }
.pt-tool-id { min-width: 0; }
.pt-tool-eyebrow {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .14em;
	color: var(--pt-accent);
	margin-bottom: 6px;
}
.pt-tool-name {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.1;
	margin: 0 0 6px;
	color: var(--pt-ink);
}
.pt-tool-for { margin: 0 0 14px; font-size: 15px; color: var(--pt-muted); }
.pt-tool-for a { color: var(--pt-accent); text-decoration: none; font-weight: 600; }
.pt-tool-for a:hover { text-decoration: underline; }
.pt-tool-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pt-pill-price {
	background: var(--pt-bg-soft);
	color: var(--pt-ink-2);
	border: 1px solid var(--pt-border);
}
.pt-tool-cta { display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.pt-tool-visit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #6E63E0 0%, #4840B0 100%);
	color: #fff !important;
	font-weight: 600;
	padding: 14px 28px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 15px;
	box-shadow: 0 6px 20px rgba(72,64,176,.4);
	transition: transform var(--pt-fast), box-shadow var(--pt-fast);
	white-space: nowrap;
}
.pt-tool-visit:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(72,64,176,.55); color: #fff !important; }
.pt-tool-share {
	font-size: 13px;
	color: var(--pt-ink-2);
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	padding: 10px 18px;
	border-radius: 999px;
	text-decoration: none;
	text-align: center;
	font-weight: 500;
}
.pt-tool-share:hover { border-color: var(--pt-accent); color: var(--pt-accent); }

.pt-tool-body {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}
.pt-tool-main { min-width: 0; }
.pt-tool-section {
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 16px;
	padding: 28px;
	margin-bottom: 20px;
}
.pt-tool-section h2 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 14px;
	color: var(--pt-ink);
	letter-spacing: -.01em;
}
.pt-tool-lead {
	font-size: 17px;
	line-height: 1.6;
	color: var(--pt-ink);
	margin: 0 0 16px;
}
.pt-tool-content { font-size: 15px; line-height: 1.7; color: var(--pt-ink-2); }
.pt-tool-content p { margin: 0 0 14px; }
.pt-tool-content a { color: var(--pt-accent); }

.pt-tool-side { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }
.pt-tool-card {
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 16px;
	padding: 22px;
}
.pt-tool-card h4 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--pt-muted);
	margin: 0 0 14px;
}
.pt-tool-dl { margin: 0 0 16px; display: grid; grid-template-columns: 1fr; gap: 10px; }
.pt-tool-dl dt {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--pt-muted);
	margin-bottom: 2px;
}
.pt-tool-dl dd {
	margin: 0 0 8px;
	font-size: 14px;
	color: var(--pt-ink);
	line-height: 1.5;
}
.pt-tool-dl dd a { color: var(--pt-accent); text-decoration: none; }
.pt-tool-dl dd a:hover { text-decoration: underline; }
.pt-tool-visit--side { width: 100%; padding: 12px 18px; font-size: 14px; }

.pt-related { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pt-related li { margin: 0; }
.pt-related a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px;
	border-radius: 8px;
	color: var(--pt-ink);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: background var(--pt-fast);
}
.pt-related a:hover { background: var(--pt-bg-soft); color: var(--pt-accent); }
.pt-related-icon {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	display: inline-flex; align-items: center; justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 12px;
	color: var(--pt-accent);
}
.pt-related-icon img { width: 18px; height: 18px; }

@media (max-width: 960px) {
	.pt-tool-hero { padding: 24px; }
	.pt-tool-hero-inner { grid-template-columns: 1fr; gap: 16px; text-align: left; }
	.pt-tool-logo { width: 72px; height: 72px; }
	.pt-tool-name { font-size: 26px; }
	.pt-tool-cta { flex-direction: row; }
	.pt-tool-body { grid-template-columns: 1fr; }
	.pt-tool-side { position: static; }
}

/* 4-column fixed grid for Latest additions */
.pt-grid--4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .pt-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pt-grid--4 { grid-template-columns: 1fr; } }

/* ===== Single tool — enhanced startupstash sections ===== */
.pt-tool-share-group { display: flex; gap: 6px; justify-content: flex-end; }
.pt-tool-share-btn {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	color: var(--pt-ink-2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	transition: all var(--pt-fast);
}
.pt-tool-share-btn:hover { background: var(--pt-accent); color: #fff !important; border-color: var(--pt-accent); transform: translateY(-1px); }

.pt-tool-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	max-width: 1200px;
	margin: 0 auto 32px;
	padding: 0 24px;
}
.pt-tool-shot {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16/10;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	transition: transform var(--pt-fast), box-shadow var(--pt-fast);
}
.pt-tool-shot:hover { transform: translateY(-2px); box-shadow: var(--pt-shadow-lg); }
.pt-tool-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pt-tool-offer {
	background: linear-gradient(135deg, rgba(110,99,224,.08), rgba(72,64,176,.04));
	border: 1px solid rgba(110,99,224,.25);
}
.pt-offer-tag {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: var(--pt-accent-deep);
	background: rgba(110,99,224,.15);
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 10px;
}
[data-pt-theme="dark"] .pt-offer-tag { color: var(--pt-accent-hi); }

.pt-tool-highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
}
.pt-tool-highlights li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--pt-ink);
	padding: 14px 16px;
	background: var(--pt-bg-soft);
	border: 1px solid var(--pt-border);
	border-radius: 10px;
}
.pt-tool-check {
	flex-shrink: 0;
	width: 22px; height: 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6E63E0, #4840B0);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pt-cat-link {
	display: inline-block;
	color: var(--pt-accent);
	font-weight: 600;
	text-decoration: none;
	font-size: 14px;
}
.pt-cat-link:hover { text-decoration: underline; }

.pt-tool-related {
	max-width: 1200px;
	margin: 48px auto 0;
	padding: 0 24px;
}

@media (max-width: 960px) {
	.pt-tool-gallery { grid-template-columns: repeat(2, 1fr); padding: 0 16px; }
	.pt-tool-share-group { justify-content: flex-start; }
}
@media (max-width: 600px) {
	.pt-tool-gallery { grid-template-columns: 1fr; }
}

/* ===== Single tool — futurepedia-style additions ===== */
.pt-tool-title-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 8px; }
.pt-tool-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--pt-ink-2); font-weight: 500; }
.pt-tool-rating strong { color: var(--pt-ink); font-weight: 700; font-size: 16px; }
.pt-stars {
	font-family: monospace;
	font-size: 18px;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #FFB800 var(--pct, 100%), var(--pt-border) var(--pct, 100%));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.pt-tool-tagline { font-size: 16px; color: var(--pt-ink-2); margin: 0 0 12px; line-height: 1.5; }
.pt-tool-pricing-line { margin: 12px 0 0; font-size: 13px; color: var(--pt-muted); }
.pt-tool-pricing-line strong { color: var(--pt-ink-2); font-weight: 600; }
.pt-pill-tag {
	background: var(--pt-bg-soft);
	color: var(--pt-ink-2);
	border: 1px solid var(--pt-border);
	text-decoration: none;
}
.pt-pill-tag:hover { color: var(--pt-accent); border-color: var(--pt-accent); }

.pt-tool-subnav {
	max-width: 1200px;
	margin: 0 auto 24px;
	padding: 14px 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 14px;
	font-size: 13px;
}
.pt-tool-subnav a {
	color: var(--pt-ink-2);
	text-decoration: none;
	font-weight: 500;
	white-space: nowrap;
}
.pt-tool-subnav a:hover { color: var(--pt-accent); }
.pt-subnav-meta { margin-left: auto; color: var(--pt-muted); font-size: 12px; }

.pt-tool-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 24px;
}
.pt-tool-features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--pt-ink-2);
}
.pt-feat-dot {
	flex-shrink: 0;
	margin-top: 7px;
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--pt-accent);
}

.pt-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pt-pros, .pt-cons {
	padding: 18px 20px;
	border-radius: 12px;
	border: 1px solid var(--pt-border);
}
.pt-pros { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.2); }
.pt-cons { background: rgba(239,68,68,.05); border-color: rgba(239,68,68,.18); }
.pt-pros h4, .pt-cons h4 {
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.pt-pros h4 { color: #16a34a; }
.pt-cons h4 { color: #dc2626; }
.pt-pros h4 span, .pt-cons h4 span {
	width: 20px; height: 20px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
}
.pt-pros h4 span { background: #16a34a; }
.pt-cons h4 span { background: #dc2626; }
.pt-pros ul, .pt-cons ul { margin: 0; padding-left: 18px; }
.pt-pros li, .pt-cons li { font-size: 14px; line-height: 1.55; color: var(--pt-ink-2); margin-bottom: 6px; }

.pt-pricing-tiers {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}
.pt-tier {
	padding: 18px;
	border: 1px solid var(--pt-border);
	border-radius: 12px;
	background: var(--pt-bg-soft);
}
.pt-tier h4 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--pt-ink);
}
.pt-tier p { margin: 6px 0 0; font-size: 13px; color: var(--pt-muted); }
.pt-tier--free { border-color: rgba(34,197,94,.3); background: rgba(34,197,94,.04); }
.pt-tier--top {
	border-color: var(--pt-accent);
	background: linear-gradient(135deg, rgba(110,99,224,.08), rgba(72,64,176,.04));
}
.pt-tool-disclaimer { font-size: 12px; color: var(--pt-muted); font-style: italic; margin: 0; }

@media (max-width: 720px) {
	.pt-tool-features { grid-template-columns: 1fr; }
	.pt-proscons { grid-template-columns: 1fr; }
	.pt-tool-subnav { gap: 12px; padding: 12px 16px; overflow-x: auto; flex-wrap: nowrap; }
	.pt-subnav-meta { display: none; }
}

/* ===== Explore Tools — startupstash-style hero + grid ===== */
.pt-explore-hero {
	max-width: 1280px;
	margin: 0 auto;
	padding: 48px 24px 24px;
	text-align: center;
}
.pt-explore-hero-inner h1 {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -.025em;
	margin: 0 0 10px;
	color: var(--pt-ink);
}
.pt-explore-hero-inner p {
	font-size: 16px;
	color: var(--pt-muted);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.55;
}

.pt-explore-header { align-items: center; }
.pt-explore-count { font-size: 14px; color: var(--pt-muted); margin: 0; }
.pt-explore-count strong { color: var(--pt-ink); font-size: 18px; font-weight: 700; }
.pt-explore-controls {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}
.pt-sort {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--pt-muted);
	font-weight: 500;
}
.pt-sort select {
	background: var(--pt-surface);
	border: 1px solid var(--pt-border);
	border-radius: 10px;
	padding: 9px 32px 9px 12px;
	font-size: 13px;
	color: var(--pt-ink);
	font-family: inherit;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6989' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
}
.pt-sort select:focus { outline: none; border-color: var(--pt-accent); }

.pt-explore-grid {
	grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1100px) { .pt-explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .pt-explore-grid { grid-template-columns: 1fr; } }

.pt-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 36px;
	flex-wrap: wrap;
}
.pt-pagination .page-numbers {
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid var(--pt-border);
	background: var(--pt-surface);
	color: var(--pt-ink-2);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--pt-fast);
}
.pt-pagination .page-numbers:hover { border-color: var(--pt-accent); color: var(--pt-accent); }
.pt-pagination .page-numbers.current {
	background: linear-gradient(135deg, #6E63E0, #4840B0);
	color: #fff;
	border-color: transparent;
}

@media (max-width: 720px) {
	.pt-explore-hero { padding: 32px 16px 16px; }
	.pt-explore-hero-inner h1 { font-size: 26px; }
	.pt-explore-controls { width: 100%; justify-content: space-between; }
}


/* ========== Reviews & Ratings (Podwires brand) ========== */
.pt-reviews { margin-top: 36px; padding: 28px; background: var(--pt-surface); border: 1px solid var(--pt-border); border-radius: 18px; box-shadow: 0 1px 2px rgba(29,28,46,.04); }

.pt-reviews-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.pt-reviews-title { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pt-reviews-title h2 { margin: 0; font-size: 22px; color: var(--pt-ink); letter-spacing: -.01em; }
.pt-reviews-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--pt-surface-2); border-radius: 999px; font-size: 13px; color: var(--pt-ink-soft); }
.pt-reviews-pill strong { color: var(--pt-ink); font-weight: 600; }
.pt-reviews-pill .pt-dot { opacity: .4; }
.pt-reviews-pill .pt-stars { font-size: 13px; }

.pt-btn-outline { background: var(--pt-surface); color: var(--pt-ink); border: 1px solid var(--pt-border); padding: 9px 18px; border-radius: 10px; font-weight: 600; font-size: 13px; cursor: pointer; transition: border-color .15s ease, box-shadow .15s ease, color .15s ease; }
.pt-btn-outline:hover { border-color: var(--pt-accent); color: var(--pt-accent); box-shadow: 0 4px 14px rgba(110,99,224,.18); }
.pt-btn-gradient { background: linear-gradient(135deg, #6E63E0 0%, #4840B0 100%); color: #fff !important; border: 0; padding: 12px 22px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; box-shadow: 0 8px 22px rgba(72,64,176,.32); transition: transform .15s ease, box-shadow .15s ease; text-decoration: none; display: inline-block; }
.pt-btn-gradient:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(72,64,176,.38); }

.pt-review-ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; padding: 10px 14px; border-radius: 10px; margin: 0 0 14px; }
.pt-review-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 10px 14px; border-radius: 10px; margin: 0 0 14px; }

/* Form panel (collapsed by default) */
.pt-review-form-panel { display: none; margin-bottom: 22px; }
.pt-review-form-panel.is-open { display: block; }
.pt-review-form-card { background: var(--pt-surface); border: 1px solid var(--pt-border); border-radius: 14px; padding: 24px; }
.pt-review-form-card h3 { margin: 0 0 18px; font-size: 18px; color: var(--pt-ink); }

.pt-field { margin-bottom: 18px; }
.pt-field-label { display: block; font-weight: 600; font-size: 14px; color: var(--pt-ink); margin-bottom: 8px; }
.pt-field-label .pt-req { color: var(--pt-ink-soft); font-weight: 500; font-size: 13px; }
.pt-field-hint { margin: 6px 0 0; font-size: 12px; color: var(--pt-ink-soft); }
.pt-field-counter { margin: 6px 0 0; font-size: 12px; color: var(--pt-ink-soft); text-align: right; }
.pt-field-counters { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; gap: 12px; font-size: 12px; }
.pt-field-min { color: #d97706; font-weight: 600; }
.pt-field-min.is-met { color: #047857; }

.pt-review-form input[type="text"],
.pt-review-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--pt-border); border-radius: 10px; font: inherit; background: var(--pt-bg); color: var(--pt-ink); transition: border-color .15s ease, box-shadow .15s ease; box-sizing: border-box; }
.pt-review-form textarea { resize: vertical; min-height: 120px; }
.pt-review-form input[type="text"]:focus,
.pt-review-form textarea:focus { outline: none; border-color: var(--pt-accent); box-shadow: 0 0 0 3px rgba(110,99,224,.18); }
.pt-review-form input:disabled,
.pt-review-form textarea:disabled { background: var(--pt-surface-2); color: var(--pt-ink-soft); cursor: not-allowed; }

.pt-rating-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.pt-rating-input input { position: absolute; opacity: 0; pointer-events: none; }
.pt-rating-input label { font-size: 30px; line-height: 1; color: #d1d5db; cursor: pointer; transition: color .12s ease, transform .12s ease; }
.pt-rating-input label:hover, .pt-rating-input label:hover ~ label,
.pt-rating-input input:checked ~ label { color: #f59e0b; }
.pt-rating-input input:focus-visible + label { outline: 2px solid var(--pt-accent); outline-offset: 3px; border-radius: 4px; }
.pt-rating-input input:disabled + label { cursor: not-allowed; opacity: .7; }

.pt-form-actions { display: flex; justify-content: flex-end; margin-top: 18px; }
.pt-review-info { margin: 14px 0 0; padding: 12px 14px; background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; border-radius: 10px; font-size: 13px; display: flex; align-items: center; gap: 10px; }
.pt-review-info a { color: #1e3a8a; font-weight: 600; }
.pt-info-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid currentColor; font-size: 11px; font-weight: 700; font-family: Georgia, serif; flex-shrink: 0; }

/* Score + distribution summary */
.pt-reviews-summary { display: grid; grid-template-columns: minmax(220px, 1fr) 2fr; gap: 32px; align-items: center; padding: 24px 28px; background: var(--pt-surface); border: 1px solid var(--pt-border); border-radius: 14px; margin-bottom: 22px; }
.pt-reviews-score { text-align: center; }
.pt-reviews-score-num { font-size: 56px; font-weight: 800; color: var(--pt-ink); letter-spacing: -.02em; line-height: 1; margin-bottom: 8px; }
.pt-reviews-score .pt-stars { font-size: 22px; }
.pt-reviews-score-meta { margin-top: 8px; font-size: 13px; color: var(--pt-ink-soft); }

.pt-reviews-bars { display: flex; flex-direction: column; gap: 8px; }
.pt-bar-row { display: grid; grid-template-columns: 36px 1fr 28px; align-items: center; gap: 12px; font-size: 13px; color: var(--pt-ink-soft); }
.pt-bar-label { font-weight: 600; color: var(--pt-ink); white-space: nowrap; }
.pt-bar-track { height: 8px; background: #e5e7eb; border-radius: 999px; overflow: hidden; }
.pt-bar-fill { display: block; height: 100%; background: linear-gradient(90deg, #6E63E0 0%, #4840B0 100%); border-radius: 999px; transition: width .4s ease; }
.pt-bar-num { text-align: right; font-variant-numeric: tabular-nums; }

/* Empty state */
.pt-reviews-empty { background: var(--pt-surface-2); border: 1px solid var(--pt-border); border-radius: 14px; padding: 48px 24px; text-align: center; }
.pt-reviews-empty-icon { display: inline-flex; align-items: center; justify-content: center; color: var(--pt-ink-soft); margin-bottom: 12px; opacity: .55; }
.pt-reviews-empty h3 { margin: 0 0 6px; font-size: 18px; color: var(--pt-ink); }
.pt-reviews-empty p { margin: 0 0 18px; color: var(--pt-ink-soft); font-size: 14px; }

/* Review list */
.pt-review-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pt-review-item { background: var(--pt-surface); border: 1px solid var(--pt-border); border-radius: 14px; padding: 18px 20px; }
.pt-review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.pt-review-meta img { border-radius: 50%; }
.pt-review-meta strong { display: block; font-size: 14px; color: var(--pt-ink); line-height: 1.2; }
.pt-review-meta-row { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--pt-ink-soft); margin-top: 2px; }
.pt-review-meta-row .pt-stars { font-size: 13px; }
.pt-review-title { margin: 6px 0 4px; font-size: 15px; color: var(--pt-ink); }
.pt-review-body { color: var(--pt-ink); line-height: 1.55; font-size: 14px; }

@media (max-width: 760px) {
	.pt-reviews { padding: 20px 16px; }
	.pt-reviews-summary { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
	.pt-reviews-score-num { font-size: 44px; }
	.pt-rating-input label { font-size: 34px; }
	.pt-form-actions { justify-content: stretch; }
	.pt-form-actions .pt-btn-gradient { width: 100%; text-align: center; }
}

/* ========== From the Blog + Events sections ========== */
.pt-section-head--lg { align-items: flex-end; margin-bottom: 22px; }
.pt-section-head--lg h2 { font-size: 30px; letter-spacing: -.02em; margin: 4px 0 0; line-height: 1.15; }
.pt-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .12em; color: var(--pt-accent); text-transform: uppercase; }
.pt-section-link { font-size: 13px; font-weight: 600; color: var(--pt-ink); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.pt-section-link:hover { color: var(--pt-accent); }

.pt-news-section { margin-top: 56px; max-width: var(--wp--style--global--wide-size, 1280px) !important; margin-left: auto !important; margin-right: auto !important; width: 100%; }
.pt-events-section { margin-top: 56px; max-width: var(--wp--style--global--wide-size, 1280px) !important; margin-left: auto !important; margin-right: auto !important; width: 100%; }

.pt-media-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.pt-media-card { background: var(--pt-surface); border: 1px solid var(--pt-border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.pt-media-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(29,28,46,.10); border-color: rgba(110,99,224,.35); }

.pt-media-art { display: block; position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #6E63E0 0%, #4840B0 100%); background-size: cover; background-position: center; }
.pt-media-pill { position: absolute; left: 14px; bottom: 14px; padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .06em; color: #fff; background: rgba(20,18,40,.78); backdrop-filter: blur(6px); }

.pt-media-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.pt-media-body h3 { margin: 0; font-size: 17px; line-height: 1.35; letter-spacing: -.005em; }
.pt-media-body h3 a { color: var(--pt-ink); text-decoration: none; }
.pt-media-body h3 a:hover { color: var(--pt-accent); }
.pt-media-body p { margin: 0; color: var(--pt-ink-soft); font-size: 14px; line-height: 1.55; }
.pt-media-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; font-size: 13px; }
.pt-media-foot time { color: var(--pt-ink-soft); }
.pt-media-foot a { color: var(--pt-accent); font-weight: 600; text-decoration: none; }
.pt-media-foot a:hover { text-decoration: underline; }

.pt-events-foot { text-align: center; margin-top: 26px; }
.pt-btn-pill { padding: 10px 22px; border-radius: 999px; font-size: 13px; }

@media (max-width: 980px) { .pt-media-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } .pt-section-head--lg h2 { font-size: 24px; } }
@media (max-width: 640px) { .pt-media-grid { grid-template-columns: 1fr; gap: 18px; } .pt-news-section, .pt-events-section { margin-top: 44px; } }

/* ========== Producer / Hire CTA pair ========== */
.pt-cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 64px auto 32px; max-width: var(--wp--style--global--wide-size, 1280px) !important; width: 100%; }
.pt-cta-card { padding: 36px; border-radius: 18px; display: flex; flex-direction: column; gap: 14px; min-height: 220px; }
.pt-cta-card h3 { margin: 0; font-size: 26px; letter-spacing: -.015em; line-height: 1.2; }
.pt-cta-card p { margin: 0; font-size: 14px; line-height: 1.55; }
.pt-cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }

.pt-cta-card--filled { background: linear-gradient(135deg, #6E63E0 0%, #4840B0 100%); color: #fff; box-shadow: 0 18px 36px rgba(72,64,176,.28); }
.pt-cta-card--filled .pt-cta-eyebrow { color: rgba(255,255,255,.82); }
.pt-cta-card--filled p { color: rgba(255,255,255,.86); }

.pt-cta-card--light { background: var(--pt-surface); color: var(--pt-ink); border: 1px solid var(--pt-border); }
.pt-cta-card--light .pt-cta-eyebrow { color: var(--pt-accent); }
.pt-cta-card--light p { color: var(--pt-ink-soft); }

.pt-cta-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: auto; padding-top: 8px; }
.pt-cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease; }
.pt-cta-btn--ghost { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.32); margin-top: auto; align-self: flex-start; }
.pt-cta-btn--ghost:hover { background: #fff; color: #4840B0; }
.pt-cta-btn--solid { background: linear-gradient(135deg, #6E63E0 0%, #4840B0 100%); color: #fff; box-shadow: 0 8px 22px rgba(72,64,176,.32); }
.pt-cta-btn--solid:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(72,64,176,.4); }
.pt-cta-btn--text { color: var(--pt-ink); padding: 12px 8px; }
.pt-cta-btn--text:hover { color: var(--pt-accent); }

@media (max-width: 860px) {
	.pt-cta-pair { grid-template-columns: 1fr; }
	.pt-cta-card { padding: 28px; }
	.pt-cta-card h3 { font-size: 22px; }
}

/* ── Tab navigation (Futurepedia + AIAgentsDirectory style) ── */
.pt-tool-tabs-wrap { position: sticky; top: var(--pt-bar-h); z-index: 90; background: var(--pt-bg); border-bottom: 1px solid var(--pt-border); margin-bottom: 28px; }
.pt-tool-tabs { max-width: var(--pt-container); margin: 0 auto; display: flex; gap: 0; align-items: center; overflow-x: auto; scrollbar-width: none; padding: 0 4px; }
.pt-tab-btn { background: none; border: none; border-bottom: 2px solid transparent; padding: 14px 18px; font-size: 13.5px; font-weight: 500; color: var(--pt-ink-2); cursor: pointer; white-space: nowrap; transition: color var(--pt-fast), border-color var(--pt-fast); margin-bottom: -1px; }
.pt-tab-btn.is-active { color: var(--pt-accent); border-bottom-color: var(--pt-accent); font-weight: 600; }
.pt-tabs-meta { margin-left: auto; font-size: 12px; color: var(--pt-muted); padding: 0 8px; white-space: nowrap; }
.pt-tool-eyebrow-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.pt-tool-eyebrow--verified { color: #22a06b; }
.pt-tool-rating-row { display: flex; align-items: center; gap: 14px; margin: 10px 0 14px; }
.pt-rating-link { font-size: 13px; color: var(--pt-accent); text-decoration: none; font-weight: 500; }
.pt-tool-review-cta { text-align: center; border: 2px solid var(--pt-accent) !important; color: var(--pt-accent) !important; font-weight: 600; background: transparent; }
.pt-tool-dl--icons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.pt-dl-row { display: flex; gap: 10px; align-items: flex-start; }
.pt-dl-icon { font-size: 16px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.pt-dl-row dt { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--pt-muted); margin-bottom: 1px; }
.pt-dl-row dd { margin: 0; font-size: 13.5px; color: var(--pt-ink); }
.pt-share-row { display: flex; flex-wrap: wrap; gap: 6px; }
.pt-share-pill { display: inline-flex; align-items: center; gap: 5px; padding: 7px 13px; border-radius: 999px; background: var(--pt-bg-soft); border: 1px solid var(--pt-border); color: var(--pt-ink-2); font-size: 12px; font-weight: 500; text-decoration: none; }
.pt-share-pill:hover { border-color: var(--pt-accent); color: var(--pt-accent); }
.pt-tool-benefit-box { display: flex; gap: 12px; align-items: flex-start; background: rgba(110,99,224,.07); border: 1px solid rgba(110,99,224,.2); border-radius: 12px; padding: 16px 18px; margin-top: 18px; }
.pt-bar-nav a { color: var(--pt-ink-2); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color var(--pt-fast); }
.pt-bar-nav a:hover { color: var(--pt-accent); }
.pt-bar-search { background: none; border: 1px solid var(--pt-border); border-radius: 6px; padding: 5px 10px; color: var(--pt-ink-2); font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 6px; }
.pt-bar-search:hover { border-color: var(--pt-accent); color: var(--pt-accent); }

/* Hide default theme header on podtoolbox pages */
body.podtoolbox-app #header,
body.podtoolbox-app #page > hr { display: none !important; }

/* Video hero layout */
.pt-tool-hero-left {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	min-width: 0;
}
.pt-tool-hero.has-video .pt-tool-hero-inner {
	grid-template-columns: 1fr 420px;
	align-items: start;
}
.pt-tool-hero-video { min-width: 0; }
.pt-tool-hero-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.pt-tool-hero-video-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.pt-brand-logo { height: 40px; width: auto; display: block; flex-shrink: 0; }
@media (max-width: 960px) {
	.pt-tool-hero.has-video .pt-tool-hero-inner { grid-template-columns: 1fr; }
}
