.site-nav,
.panel,
.tool-item,
.chip,
.search-box,
.output-panel,
textarea,
.button {
	box-shadow: var(--shadow);
	border-radius: var(--radius-md);
}

.nav-drawer-trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	width: 38px;
	height: 38px;
	padding: 0;
	background: rgba(255, 255, 255, 0.62);
	border: 0;
	border-radius: var(--radius-sm);
	box-shadow: inset 0 0 0 1px rgba(41, 72, 58, 0.06);
	cursor: pointer;
}

.nav-drawer-trigger span {
	display: block;
	width: 16px;
	height: 1.5px;
	background: var(--line-strong);
}

.nav-mark {
	color: inherit;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0;
	text-decoration: none;
	white-space: nowrap;
}

.nav-mark[aria-current="page"] {
	color: var(--text);
}

.breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
}

.breadcrumb a,
.breadcrumb-current {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.breadcrumb-current {
	color: var(--text);
}

.breadcrumb-separator {
	flex: 0 0 auto;
	color: rgba(97, 117, 106, 0.7);
}

.drawer-label,
.eyebrow,
.hint {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--muted);
}

.drawer-label {
	color: var(--muted);
}

.eyebrow {
	color: var(--accent);
	font-weight: 700;
}

.drawer-links a {
	display: block;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.62);
	border-radius: var(--radius-sm);
	box-shadow: inset 0 0 0 1px rgba(41, 72, 58, 0.05);
}

.drawer-links a[aria-current="page"] {
	background: rgba(227, 240, 231, 0.92);
	color: var(--accent-strong);
}

.hero,
.panel,
.section-block,
.panel-search {
	background: var(--panel);
}

.hero,
.panel-search {
	display: grid;
	gap: 16px;
	padding: 24px;
	background:
		linear-gradient(180deg, rgba(249, 253, 249, 0.92), rgba(242, 248, 243, 0.96));
}

.hero {
	grid-template-columns: 1fr auto;
	align-items: end;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: "";
	position: absolute;
	inset: auto -8% -28% auto;
	width: 240px;
	height: 240px;
	border-radius: 999px;
	background:
		radial-gradient(circle, rgba(87, 145, 103, 0.18) 0%, rgba(87, 145, 103, 0) 72%);
	pointer-events: none;
}

.hero-tip {
	margin-top: 8px;
	color: var(--muted);
	font-size: 14px;
	max-width: 48ch;
}

.hero-actions,
.panel-actions,
.chip-row,
.tip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.button {
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--text);
	cursor: pointer;
	border-radius: var(--radius-sm);
	border: 0;
	transition:
		background-color 120ms ease,
		box-shadow 120ms ease,
		transform 120ms ease;
}

.button-primary {
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
	color: var(--accent-inverse);
	box-shadow: 0 8px 18px rgba(47, 106, 79, 0.14);
}

.button-secondary {
	background: var(--panel-strong);
}

.button:hover,
.icon-button:hover {
	box-shadow: 0 0 0 1px rgba(41, 72, 58, 0.08);
	transform: translateY(-1px);
}

.icon-button {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: rgba(255, 255, 255, 0.72);
	color: var(--text);
	cursor: pointer;
	border: 0;
	border-radius: var(--radius-sm);
	box-shadow: 0 0 0 1px rgba(41, 72, 58, 0.05);
	transition:
		background-color 120ms ease,
		box-shadow 120ms ease,
		transform 120ms ease;
}

.icon-button svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.icon-button-primary {
	background: linear-gradient(180deg, var(--accent) 0%, var(--accent-strong) 100%);
	color: var(--accent-inverse);
	box-shadow: 0 8px 18px rgba(47, 106, 79, 0.14);
}

.section-block,
.panel,
.tool-panel {
	padding: 18px;
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.56),
		0 10px 30px rgba(28, 52, 37, 0.04);
}

.section-block:first-child {
	background:
		linear-gradient(180deg, rgba(240, 248, 242, 0.98), rgba(250, 252, 250, 0.92));
}

.section-head,
.panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 12px;
}

.tool-list {
	display: grid;
	gap: 10px;
}

.tool-item {
	display: grid;
	gap: 8px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.78);
	border-radius: var(--radius-sm);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.65),
		0 1px 0 rgba(41, 72, 58, 0.05);
}

.tool-item-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.tool-item-head span,
.chip,
.tip {
	font-size: 12px;
	color: var(--muted);
}

.tool-item p {
	font-size: 14px;
	color: var(--muted);
}

.chip,
.tip,
.tool-badge {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
}

.chip {
	padding: 6px 10px;
	background: linear-gradient(180deg, var(--accent-soft) 0%, var(--accent-soft-2) 100%);
	color: var(--accent-strong);
	box-shadow: none;
}

.tip {
	padding: 5px 9px;
	background: rgba(227, 240, 231, 0.92);
	color: var(--accent-strong);
}

.tool-badge {
	padding: 4px 10px;
	background: rgba(227, 240, 231, 0.92);
	color: var(--accent-strong);
	font-size: 12px;
	font-weight: 700;
}

.search-box {
	display: grid;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.78);
	border-radius: var(--radius-sm);
	box-shadow:
		inset 0 0 0 1px rgba(41, 72, 58, 0.05),
		0 1px 0 rgba(41, 72, 58, 0.03);
}

.search-box input {
	border: 0;
	outline: 0;
	background: transparent;
	padding: 0;
}

.install-trigger[hidden] {
	display: none;
}

.not-found {
	display: grid;
	gap: 12px;
}

@media (max-width: 860px) {
	.breadcrumb {
		width: 100%;
	}

	.button,
	.chip,
	.search-box {
		width: 100%;
	}

	.hero-actions .button,
	.panel-actions .button {
		width: auto;
		flex: 1 1 calc(50% - 4px);
	}
}
