:root {
	--paper: #f2f4ea;
	--card: #fffdf7;
	--ink: #173f37;
	--muted: #60746c;
	--faint: #87958d;
	--line: rgba(23, 63, 55, 0.13);
	--line-strong: rgba(23, 63, 55, 0.27);
	--green: #28604e;
	--green-dark: #173f37;
	--green-pale: #e5edd8;
	--yellow: #e6c85d;
	--yellow-pale: #f7efc9;
	--red: #a94e49;
	--red-pale: #f5e1df;
	--blue-pale: #e2ecec;
	--display: "Newsreader", Georgia, serif;
	--sans: "DM Sans", system-ui, sans-serif;
	--mono: "DM Mono", ui-monospace, monospace;
	--shadow: 0 28px 70px -52px rgba(23, 63, 55, 0.5);
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--ink);
	background:
		radial-gradient(circle at 86% 2%, rgba(230, 200, 93, 0.18), transparent 25%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 500px),
		var(--paper);
	font-family: var(--sans);
	-webkit-font-smoothing: antialiased;
}
button,
input {
	font: inherit;
	color: inherit;
}
button,
a {
	-webkit-tap-highlight-color: transparent;
}
[hidden] {
	display: none !important;
}

.topbar {
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: 72px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 0 max(24px, calc((100vw - 1240px) / 2));
	border-bottom: 1px solid var(--line);
	background: rgba(249, 250, 244, 0.9);
	backdrop-filter: blur(14px);
}
.brand {
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--ink);
	font-size: 14px;
	text-decoration: none;
}
.brand b {
	color: var(--green);
}
.brand-mark {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--green-pale);
	font-size: 17px;
}
.topbar nav {
	display: flex;
	gap: 4px;
	padding: 4px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.62);
}
.topbar nav a {
	padding: 8px 14px;
	border-radius: 999px;
	color: var(--muted);
	font-size: 11px;
	text-decoration: none;
}
.topbar nav a.active {
	color: var(--green);
	background: var(--green-pale);
}
.session {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 11px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--card);
	font: 600 9px / 1 var(--mono);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.session > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--yellow);
	box-shadow: 0 0 0 4px rgba(230, 200, 93, 0.18);
}

main {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}
.view {
	padding: 54px 0 100px;
	animation: enter 220ms ease both;
}
@keyframes enter {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
}
.hero,
.page-head {
	min-height: 310px;
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) 280px;
	align-items: center;
	gap: 70px;
	padding: 28px 0 48px;
	border-bottom: 1px solid var(--line);
}
.eyebrow,
.kicker {
	margin: 0 0 13px;
	color: var(--green);
	font: 650 9px / 1 var(--sans);
	letter-spacing: 0.13em;
	text-transform: uppercase;
}
.eyebrow::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 1px;
	margin-right: 10px;
	background: #a78f31;
	vertical-align: 3px;
}
h1 {
	margin: 0;
	font: 400 clamp(48px, 6.2vw, 78px) / 0.9 var(--display);
	letter-spacing: -0.045em;
}
h1 em {
	color: var(--green);
	font-weight: 400;
}
.hero-copy,
.page-head > div > p:last-child {
	max-width: 690px;
	margin: 24px 0 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.65;
}
.account-card,
.page-head > aside {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 253, 247, 0.84);
	box-shadow: var(--shadow);
}
.account-card > span,
.page-head > aside > span {
	color: var(--faint);
	font: 600 8px / 1 var(--mono);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.account-card > div {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 18px 0;
}
.account-card i,
.avatar,
.person > i {
	flex: 0 0 auto;
	width: 39px;
	height: 39px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--green-pale);
	color: var(--green);
	font: normal 700 10px / 1 var(--sans);
}
.account-card p,
.person p {
	min-width: 0;
	margin: 0;
}
.account-card b,
.account-card small,
.person b,
.person small {
	display: block;
}
.account-card b {
	font-size: 12px;
}
.account-card small {
	margin-top: 4px;
	color: var(--muted);
	font: 400 8px / 1.3 var(--mono);
}
.account-card footer {
	padding-top: 13px;
	border-top: 1px solid var(--line);
	color: var(--green);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.status-ribbon {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: 32px 0 28px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: rgba(255, 253, 247, 0.64);
}
.status-ribbon > div {
	min-height: 92px;
	display: grid;
	align-content: center;
	padding: 20px 24px;
	border-right: 1px solid var(--line);
}
.status-ribbon > div:last-child {
	border: 0;
}
.status-ribbon b {
	font: 400 23px / 1 var(--display);
}
.status-ribbon span {
	margin-top: 9px;
	color: var(--faint);
	font: 500 8px / 1 var(--mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.desk-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
	gap: 24px;
	align-items: stretch;
}
.panel,
.stop-card,
.next-card,
.evidence-card {
	border: 1px solid var(--line);
	border-radius: 19px;
	background: rgba(255, 253, 247, 0.72);
	box-shadow: var(--shadow);
}
.panel {
	overflow: hidden;
}
.panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 23px 25px;
	border-bottom: 1px solid var(--line);
}
.panel-head h2,
.stop-card h2,
.next-card h2,
.section-heading h2,
.boundary h2,
.runbook-detail h2,
.identity-split h2,
.evidence-card h2 {
	margin: 0;
	font: 400 31px / 1 var(--display);
	letter-spacing: -0.025em;
}
.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	padding: 6px 9px;
	border-radius: 999px;
	background: #eef1eb;
	color: var(--muted);
	font: normal 650 8px / 1 var(--sans);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.pill.live {
	background: var(--yellow-pale);
	color: #715e18;
}
.pill.ready {
	background: var(--green-pale);
	color: var(--green);
}
.pill.locked {
	background: var(--red-pale);
	color: #8e4642;
}
.participant-line {
	display: grid;
	grid-template-columns: 40px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 21px 25px;
	border-bottom: 1px solid var(--line);
}
.participant-line b,
.participant-line small {
	display: block;
}
.participant-line b {
	font-size: 13px;
}
.participant-line small {
	margin-top: 4px;
	color: var(--muted);
	font: 400 9px / 1.3 var(--mono);
}
.key-state {
	color: var(--green);
	font: 650 9px / 1 var(--sans);
	text-transform: uppercase;
}
.turn-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.turn-facts > div {
	min-width: 0;
	padding: 18px 25px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}
.turn-facts > div:nth-child(2n) {
	border-right: 0;
}
.turn-facts span,
.turn-facts code {
	display: block;
}
.turn-facts span {
	margin-bottom: 8px;
	color: var(--faint);
	font: 600 8px / 1 var(--mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.turn-facts code {
	overflow: hidden;
	color: var(--ink);
	font: 500 9px / 1.4 var(--mono);
	text-overflow: ellipsis;
	white-space: nowrap;
}
.native-progress {
	height: 6px;
	margin: 22px 25px 0;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(40, 96, 78, 0.1);
}
.native-progress span {
	display: block;
	width: var(--progress);
	height: 100%;
	background: var(--green);
}
.turn-actions {
	display: flex;
	justify-content: flex-end;
	gap: 9px;
	padding: 20px 25px 24px;
}
.btn {
	min-height: 41px;
	padding: 0 15px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: transparent;
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}
.btn.primary {
	color: white;
	background: var(--green);
}
.btn.secondary {
	border-color: var(--line-strong);
	background: rgba(255, 255, 255, 0.55);
}
.btn.danger {
	width: 100%;
	margin-top: 19px;
	border-color: rgba(169, 78, 73, 0.25);
	color: var(--red);
	background: var(--red-pale);
}
.btn:hover {
	filter: brightness(0.97);
}

.stop-card {
	padding: 25px;
	background: #edf2e7;
}
.stop-card header {
	display: flex;
	align-items: start;
	justify-content: space-between;
	gap: 15px;
}
.stop-card h2 {
	font-size: 29px;
}
.clear-dot {
	width: 13px;
	height: 13px;
	margin-top: 2px;
	border-radius: 50%;
	background: #72a584;
	box-shadow: 0 0 0 5px rgba(114, 165, 132, 0.13);
}
.stop-card > p {
	margin: 17px 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.55;
}
.signal-list {
	border-top: 1px solid var(--line);
}
.signal-list span {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
	font-size: 10px;
}
.signal-list i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #72a584;
}
.stop-card.paused {
	border-color: rgba(169, 78, 73, 0.35);
	background: var(--red-pale);
}
.stop-card.paused .clear-dot {
	background: var(--red);
}

.boundary {
	margin-top: 25px;
	padding: 29px;
	border-radius: 20px;
	color: white;
	background: var(--green-dark);
	box-shadow: 0 30px 70px -42px rgba(23, 63, 55, 0.75);
}
.boundary .kicker {
	color: #dbe4ae;
}
.boundary h2 {
	color: white;
	font-size: 38px;
}
.boundary-flow {
	display: grid;
	grid-template-columns: 1fr 38px 1.12fr 38px 1fr;
	align-items: stretch;
	gap: 8px;
	margin-top: 25px;
}
.boundary-flow > i {
	display: grid;
	place-items: center;
	color: #dbe4ae;
	font-style: normal;
}
.boundary-flow article {
	padding: 19px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.04);
}
.boundary-flow article.native {
	border-color: rgba(230, 200, 93, 0.32);
	background: rgba(230, 200, 93, 0.08);
}
.boundary-flow span {
	color: #b9cbc3;
	font: 500 8px / 1 var(--mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.boundary-flow b {
	display: block;
	margin-top: 13px;
	font-size: 12px;
}
.boundary-flow p {
	margin: 8px 0 0;
	color: #b9cbc3;
	font-size: 10px;
	line-height: 1.55;
}
.boundary > footer {
	margin-top: 18px;
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #b9cbc3;
	font-size: 10px;
	line-height: 1.5;
}
.boundary > footer strong {
	color: #dbe4ae;
}

.section-block {
	padding: 74px 0;
}
.section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 24px;
}
.section-heading h2 {
	font-size: 39px;
}
.text-button {
	padding: 0;
	border: 0;
	background: none;
	color: var(--green);
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}
.phase-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}
.phase-card {
	min-height: 145px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: 15px;
	background: rgba(255, 253, 247, 0.62);
	cursor: pointer;
	text-align: left;
}
.phase-card:hover {
	background: var(--card);
}
.phase-card > span {
	color: var(--faint);
	font: 500 8px / 1 var(--mono);
	text-transform: uppercase;
}
.phase-card b {
	display: block;
	margin: 24px 0 8px;
	font-size: 11px;
	line-height: 1.3;
}
.phase-card small {
	color: var(--muted);
	font: 400 8px / 1.4 var(--mono);
}
.phase-card.done > span {
	color: var(--green);
}
.phase-card.current {
	border-color: rgba(128, 107, 32, 0.3);
	background: var(--yellow-pale);
}
.phase-card.locked {
	opacity: 0.72;
}

.activity-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) 300px;
	gap: 24px;
}
.activity-card .panel-head h2 {
	font-size: 30px;
}
.event-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.event-list li {
	display: grid;
	grid-template-columns: 110px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 17px 24px;
	border-bottom: 1px solid var(--line);
}
.event-list li:last-child {
	border: 0;
}
.event-list time,
.event-list code {
	color: var(--faint);
	font: 400 8px / 1.4 var(--mono);
}
.event-list b,
.event-list span {
	display: block;
}
.event-list b {
	font-size: 11px;
}
.event-list span {
	margin-top: 4px;
	color: var(--muted);
	font-size: 9px;
}
.next-card {
	padding: 25px;
}
.next-card .avatar {
	margin: 24px 0 18px;
}
.avatar.pale {
	background: var(--yellow-pale);
	color: #78651c;
}
.next-card h2 {
	font-size: 28px;
}
.next-card > p:not(.kicker) {
	color: var(--muted);
	font-size: 11px;
	line-height: 1.6;
}
.next-card > div {
	margin: 25px 0 17px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}
.next-card > div span,
.next-card > div b {
	display: block;
}
.next-card > div span {
	color: var(--faint);
	font: 500 8px / 1 var(--mono);
	text-transform: uppercase;
}
.next-card > div b {
	margin-top: 7px;
	font-size: 10px;
}
.next-card .btn {
	width: 100%;
}

.page-head {
	min-height: 300px;
}
.page-head > div > p:last-child {
	max-width: 670px;
}
.page-head > aside {
	display: grid;
}
.page-head > aside b {
	font: 400 42px / 1 var(--display);
}
.page-head > aside span {
	margin-top: 9px;
	font-size: 11px;
	font-weight: 650;
}
.page-head > aside small {
	margin-top: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	font: 400 8px / 1.4 var(--mono);
}
.source-warning {
	display: grid;
	grid-template-columns: 26px 1fr auto;
	align-items: center;
	gap: 13px;
	margin: 28px 0;
	padding: 16px 18px;
	border-left: 3px solid #a78f31;
	background: var(--yellow-pale);
}
.source-warning > span {
	font: 600 11px / 1 var(--mono);
}
.source-warning p {
	margin: 0;
	color: var(--muted);
	font-size: 10px;
	line-height: 1.5;
}
.source-warning p b {
	color: var(--ink);
}
.source-warning a {
	color: var(--green);
	font-size: 9px;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.runbook-layout {
	display: grid;
	grid-template-columns: 290px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}
.runbook-nav {
	position: sticky;
	top: 96px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 17px;
	background: rgba(255, 253, 247, 0.62);
}
.runbook-nav button {
	width: 100%;
	display: grid;
	grid-template-columns: 29px 1fr auto;
	align-items: center;
	gap: 9px;
	min-height: 54px;
	padding: 8px 13px;
	border: 0;
	border-bottom: 1px solid var(--line);
	background: transparent;
	cursor: pointer;
	text-align: left;
}
.runbook-nav button:last-child {
	border: 0;
}
.runbook-nav button:hover {
	background: rgba(255, 255, 255, 0.65);
}
.runbook-nav button.active {
	background: var(--green-pale);
}
.runbook-nav button.stop.active {
	background: var(--red-pale);
}
.runbook-nav button > i {
	color: var(--green);
	font: normal 500 8px / 1 var(--mono);
}
.runbook-nav button > span {
	font-size: 9px;
	font-weight: 600;
	line-height: 1.25;
}
.runbook-nav button > small {
	color: var(--faint);
	font: 400 8px / 1 var(--mono);
}
.runbook-detail {
	min-height: 700px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 19px;
	background: rgba(255, 253, 247, 0.72);
	box-shadow: var(--shadow);
}
.runbook-detail > header {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 28px;
	border-bottom: 1px solid var(--line);
}
.runbook-detail h2 {
	font-size: 38px;
}
.runbook-detail .section-count {
	align-self: start;
	padding: 7px 10px;
	border-radius: 999px;
	background: #eef1eb;
	color: var(--muted);
	font: 600 8px / 1 var(--mono);
	white-space: nowrap;
}
.runbook-intro {
	margin: 12px 0 0;
	color: var(--muted);
	font-size: 11px;
	line-height: 1.55;
}
.task-list {
	padding: 4px 28px 22px;
}
.task {
	display: grid;
	grid-template-columns: 20px 1fr auto;
	gap: 13px;
	align-items: start;
	padding: 17px 0;
	border-bottom: 1px solid var(--line);
	cursor: pointer;
}
.task input {
	width: 15px;
	height: 15px;
	margin: 0;
	accent-color: var(--green);
}
.task b {
	display: block;
	font-size: 11px;
	line-height: 1.4;
}
.task small {
	display: block;
	margin-top: 6px;
	color: var(--muted);
	font-size: 9px;
	line-height: 1.45;
}
.task > em {
	color: var(--faint);
	font: normal 500 8px / 1 var(--mono);
	white-space: nowrap;
}
.task:has(input:checked) b {
	color: var(--muted);
	text-decoration: line-through;
	text-decoration-color: rgba(40, 96, 78, 0.25);
}
.runbook-foot {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 28px;
	border-top: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.38);
}
.runbook-foot p {
	max-width: 500px;
	margin: 0;
	color: var(--muted);
	font-size: 9px;
	line-height: 1.5;
}

.identity-split {
	display: grid;
	grid-template-columns: 1fr 45px 1fr;
	align-items: stretch;
	gap: 12px;
	margin: 30px 0;
}
.identity-split > i {
	display: grid;
	place-items: center;
	color: var(--green);
	font: normal 400 25px / 1 var(--display);
}
.identity-split article {
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 253, 247, 0.67);
}
.identity-split article > span {
	color: var(--green);
	font: 600 8px / 1 var(--mono);
	letter-spacing: 0.09em;
	text-transform: uppercase;
}
.identity-split h2 {
	margin-top: 22px;
	font-size: 27px;
}
.identity-split p {
	color: var(--muted);
	font-size: 10px;
	line-height: 1.55;
}
.identity-split small {
	color: #8e4642;
	font: 600 8px / 1 var(--mono);
	text-transform: uppercase;
}
.people-panel {
	margin-top: 26px;
}
.search-wrap input {
	width: 230px;
	height: 40px;
	padding: 0 13px;
	border: 1px solid var(--line);
	border-radius: 999px;
	outline: none;
	background: var(--card);
	font-size: 9px;
}
.people-table {
	overflow-x: auto;
}
.people-row {
	min-width: 800px;
	display: grid;
	grid-template-columns: 1.25fr 0.8fr 1fr 0.65fr;
	gap: 16px;
	align-items: center;
	min-height: 74px;
	padding: 0 24px;
	border-bottom: 1px solid var(--line);
}
.people-head {
	min-height: 41px;
	color: var(--faint);
	font: 500 8px / 1 var(--mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.person {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}
.person > i {
	width: 33px;
	height: 33px;
	font-size: 9px;
}
.person > i.yellow {
	background: var(--yellow-pale);
	color: #78651c;
}
.person > i.blue {
	background: var(--blue-pale);
	color: #376768;
}
.person > i.rose {
	background: var(--red-pale);
	color: #8e4642;
}
.person b {
	font-size: 11px;
}
.person small {
	margin-top: 4px;
	color: var(--faint);
	font: 400 8px / 1 var(--mono);
}
.people-row > span {
	font-size: 10px;
}
.people-row > code {
	font: 400 9px / 1 var(--mono);
}
.table-foot {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 24px;
	color: var(--faint);
	font: 400 8px / 1.4 var(--mono);
}

.evidence-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 30px;
}
.evidence-card {
	min-height: 255px;
	padding: 24px;
}
.evidence-card.featured {
	grid-column: span 2;
	color: white;
	background: var(--green-dark);
}
.evidence-card.featured .kicker {
	color: #dbe4ae;
}
.evidence-card h2 {
	font-size: 29px;
}
.evidence-card > code {
	display: block;
	margin: 18px 0;
	color: #dbe4ae;
	font: 400 10px / 1 var(--mono);
}
.evidence-card > p:not(.kicker) {
	color: var(--muted);
	font-size: 10px;
	line-height: 1.55;
}
.evidence-card.featured .btn {
	color: white;
	border-color: rgba(255, 255, 255, 0.22);
	background: rgba(255, 255, 255, 0.06);
}
.evidence-checks {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 20px 0;
}
.evidence-checks span {
	padding: 7px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #c7d6cf;
	font-size: 8px;
}
.mirror {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-top: 18px;
	padding-top: 15px;
	border-top: 1px solid var(--line);
	font-size: 9px;
}
.mirror em {
	color: var(--green);
	font-style: normal;
}
.ring {
	width: 78px;
	height: 78px;
	display: grid;
	place-items: center;
	margin: 23px 0;
	border-radius: 50%;
	background: conic-gradient(var(--green) var(--ring), rgba(40, 96, 78, 0.1) 0);
	position: relative;
}
.ring::after {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: 50%;
	background: var(--card);
}
.ring span {
	position: relative;
	z-index: 1;
	font: 500 10px / 1 var(--mono);
}
.large-state {
	display: block;
	margin-top: 36px;
	color: var(--green);
	font: 400 34px / 1 var(--display);
}

.site-footer {
	min-height: 80px;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	padding: 0 max(24px, calc((100vw - 1240px) / 2));
	border-top: 1px solid var(--line);
	color: var(--faint);
	font: 400 8px / 1.4 var(--mono);
}
.toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 100;
	max-width: min(520px, calc(100vw - 32px));
	padding: 12px 17px;
	border-radius: 999px;
	opacity: 0;
	transform: translate(-50%, 12px);
	color: white;
	background: var(--green-dark);
	box-shadow: 0 15px 40px rgba(23, 63, 55, 0.28);
	font: 500 9px / 1.4 var(--mono);
	pointer-events: none;
	transition: 170ms ease;
}
.toast.show {
	opacity: 1;
	transform: translate(-50%, 0);
}

@media (max-width: 960px) {
	.topbar {
		grid-template-columns: 1fr auto;
	}
	.topbar nav {
		position: fixed;
		right: 10px;
		bottom: 10px;
		left: 10px;
		z-index: 70;
		justify-content: stretch;
		border: 1px solid var(--line);
		box-shadow: 0 15px 40px rgba(23, 63, 55, 0.18);
	}
	.topbar nav a {
		flex: 1;
		text-align: center;
	}
	.hero,
	.page-head {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.account-card,
	.page-head > aside {
		width: 100%;
	}
	.desk-grid,
	.activity-grid {
		grid-template-columns: 1fr;
	}
	.boundary-flow {
		grid-template-columns: 1fr;
	}
	.boundary-flow > i {
		transform: rotate(90deg);
	}
	.phase-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.runbook-layout {
		grid-template-columns: 1fr;
	}
	.runbook-nav {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.runbook-nav button:nth-last-child(2) {
		border-bottom: 0;
	}
	.evidence-grid {
		grid-template-columns: 1fr 1fr;
	}
	.evidence-card.featured {
		grid-column: span 2;
	}
	.site-footer {
		padding-bottom: 76px;
	}
}

@media (max-width: 640px) {
	.topbar {
		min-height: 65px;
		padding: 0 15px;
	}
	.brand {
		font-size: 12px;
	}
	.brand-mark {
		width: 30px;
		height: 30px;
	}
	.session {
		font-size: 7px;
	}
	.topbar nav a {
		padding: 9px 4px;
		font-size: 9px;
	}
	main {
		width: calc(100% - 28px);
	}
	.view {
		padding: 35px 0 90px;
	}
	.hero,
	.page-head {
		min-height: 0;
		padding-top: 15px;
	}
	h1 {
		font-size: clamp(43px, 14vw, 60px);
	}
	.hero-copy,
	.page-head > div > p:last-child {
		font-size: 14px;
	}
	.status-ribbon {
		grid-template-columns: 1fr 1fr;
	}
	.status-ribbon > div:nth-child(2) {
		border-right: 0;
	}
	.status-ribbon > div:nth-child(-n + 2) {
		border-bottom: 1px solid var(--line);
	}
	.panel-head,
	.participant-line,
	.turn-actions {
		padding-inline: 18px;
	}
	.panel-head {
		align-items: flex-start;
		flex-direction: column;
	}
	.participant-line {
		grid-template-columns: 40px 1fr;
	}
	.participant-line .key-state {
		grid-column: 2;
	}
	.turn-facts {
		grid-template-columns: 1fr;
	}
	.turn-facts > div {
		padding-inline: 18px;
		border-right: 0;
	}
	.turn-actions {
		align-items: stretch;
		flex-direction: column;
	}
	.native-progress {
		margin-inline: 18px;
	}
	.boundary {
		padding: 22px;
	}
	.boundary h2 {
		font-size: 31px;
	}
	.section-heading {
		align-items: flex-start;
		flex-direction: column;
	}
	.phase-grid {
		grid-template-columns: 1fr 1fr;
	}
	.event-list li {
		grid-template-columns: 1fr auto;
		gap: 9px;
	}
	.event-list time {
		grid-column: 1 / -1;
	}
	.source-warning {
		grid-template-columns: 22px 1fr;
	}
	.source-warning a {
		grid-column: 2;
	}
	.runbook-nav {
		grid-template-columns: 1fr;
	}
	.runbook-nav button:nth-last-child(2) {
		border-bottom: 1px solid var(--line);
	}
	.runbook-detail > header {
		flex-direction: column;
	}
	.task-list {
		padding-inline: 20px;
	}
	.task {
		grid-template-columns: 20px 1fr;
	}
	.task > em {
		grid-column: 2;
	}
	.runbook-foot {
		align-items: stretch;
		flex-direction: column;
	}
	.identity-split {
		grid-template-columns: 1fr;
	}
	.identity-split > i {
		height: 25px;
	}
	.search-wrap,
	.search-wrap input {
		width: 100%;
	}
	.table-foot {
		align-items: flex-start;
		flex-direction: column;
	}
	.evidence-grid {
		grid-template-columns: 1fr;
	}
	.evidence-card.featured {
		grid-column: span 1;
	}
	.site-footer {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-inline: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
