/* Closing CTA banner, with the dashboard screenshot peeking in */
.cta {
	background: linear-gradient(160deg, var(--green-70) 0%, var(--green-80) 100%);
	position: relative;
	overflow: hidden;
	color: #fff;
}
.cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 90% at 30% -10%, rgba(132, 179, 154, 0.2), transparent 55%);
}
.cta-in {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 56px;
	align-items: center;
}
.cta-in .eyebrow {
	color: var(--green-30);
}
.cta-in .eyebrow::before {
	background: var(--green-40);
}
.cta-in h2 {
	font-size: clamp(30px, 3.6vw, 46px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	font-weight: 800;
	color: #fff;
	text-wrap: balance;
	margin-top: 16px;
}
.cta-in p {
	font-size: 18px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.78);
	margin-top: 18px;
	max-width: 32em;
	text-wrap: pretty;
}
.cta-in .actions {
	display: flex;
	gap: 14px;
	margin-top: 32px;
	flex-wrap: wrap;
}
/* dashboard edge peek */
.dash-peek {
	position: relative;
	height: 340px;
}
.dash-peek .card {
	position: absolute;
	top: 0;
	left: 0;
	width: 135%;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 16px 0 0 16px;
	box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.5);
	overflow: hidden;
}
.dash-peek .dh {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 13px 16px;
	border-bottom: 1px solid var(--border);
	background: var(--grey-light);
}
.dash-peek .dh .d {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--grey-20);
}
.dash-peek .dh .t {
	margin-left: 8px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--grey-70);
}
.dash-peek .dh .pill {
	margin-left: auto;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	font-weight: 600;
	color: var(--green);
	background: var(--green-10);
	border-radius: 20px;
	padding: 4px 10px;
}
.dash-peek .dh .pill .lv {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--green);
}
.dash-peek .db {
	padding: 16px;
}
.dash-peek .dstats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 11px;
	margin-bottom: 12px;
}
.dash-peek .dstat {
	border: 1px solid var(--border);
	border-radius: 11px;
	padding: 12px 13px;
}
.dash-peek .dstat .k {
	font-size: 10.5px;
	color: var(--grey-50);
	font-weight: 500;
}
.dash-peek .dstat .v {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-top: 5px;
	color: var(--grey-70);
}
.dash-peek .drow {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 11px 13px;
	border: 1px solid var(--border);
	border-radius: 11px;
	margin-bottom: 9px;
}
.dash-peek .drow .dir {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10.5px;
	font-weight: 800;
	font-family: "IBM Plex Mono", monospace;
	flex: 0 0 auto;
	background: var(--green-10);
	color: var(--green);
}
.dash-peek .drow .m {
	min-width: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.dash-peek .drow .m .r1 {
	font-size: 12.5px;
	font-weight: 600;
	color: var(--grey-70);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.dash-peek .drow .m .r2 {
	font-size: 10.5px;
	color: var(--grey-50);
	font-family: "IBM Plex Mono", monospace;
	margin-top: 2px;
}
.tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-radius: 6px;
	border: 1px solid;
	padding: 2px 8px;
	font-size: 10.5px;
	font-weight: 600;
	white-space: nowrap;
	flex: 0 0 auto;
}
.tag.dot::before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}
.tag-submitted {
	background: var(--st-sub-bg);
	color: var(--st-sub-fg);
	border-color: var(--st-sub-bd);
}
.tag-accepted {
	background: var(--st-acc-bg);
	color: var(--st-acc-fg);
	border-color: var(--st-acc-bd);
}
