/* ============================================================
   Ellan 艾尔岚 · PLAN 玩家聚合数据页
   依赖 main.css 的颜色、字体、按钮、导航与 reveal 基座
   ============================================================ */

body.plan-page { background: var(--bg); }

/* ---------- 开场 ---------- */
.plan-hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	place-items: center;
	overflow: hidden;
	isolation: isolate;
	background:
		radial-gradient(circle at 50% 44%, rgba(143, 221, 85, .09), transparent 28%),
		radial-gradient(circle at 20% 8%, rgba(245, 190, 79, .12), transparent 31%),
		radial-gradient(circle at 82% 88%, rgba(94, 214, 196, .11), transparent 34%),
		linear-gradient(180deg, #090b08, var(--bg));
}
.plan-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 26%;
	z-index: -1;
	background: linear-gradient(transparent, var(--bg));
}
.plan-hero-grid {
	position: absolute;
	inset: 0;
	z-index: -3;
	background-image:
		linear-gradient(rgba(244, 242, 230, .025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(244, 242, 230, .025) 1px, transparent 1px);
	background-size: 52px 52px;
	mask-image: radial-gradient(ellipse 72% 68% at center, #000 8%, transparent 76%);
}
.plan-orbit {
	position: absolute;
	left: 50%;
	top: 48%;
	z-index: -2;
	border: 1px solid rgba(244, 242, 230, .075);
	border-radius: 50%;
	pointer-events: none;
}
.plan-orbit::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--leaf);
	box-shadow: 0 0 22px rgba(143, 221, 85, .7);
}
.plan-orbit-one {
	width: min(70vw, 920px);
	aspect-ratio: 1.8;
	transform: translate(-50%, -50%) rotate(-7deg);
	animation: planOrbitOne 24s ease-in-out infinite alternate;
}
.plan-orbit-two {
	width: min(82vw, 1080px);
	aspect-ratio: 2.2;
	border-color: rgba(94, 214, 196, .06);
	transform: translate(-50%, -50%) rotate(13deg);
	animation: planOrbitTwo 29s ease-in-out infinite alternate;
}
.plan-orbit-two::before { left: auto; right: 12%; top: -4px; background: var(--aqua); box-shadow: 0 0 22px rgba(94, 214, 196, .6); }
@keyframes planOrbitOne { to { transform: translate(-50%, -50%) rotate(3deg) scale(1.035); } }
@keyframes planOrbitTwo { to { transform: translate(-50%, -50%) rotate(5deg) scale(.975); } }

.plan-hero-inner {
	position: relative;
	z-index: 1;
	padding: 116px 0 96px;
	text-align: center;
}
.plan-breadcrumb {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text-faint);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	animation: heroRise .8s var(--ease-out) .04s both;
}
.plan-breadcrumb a { color: var(--text-dim); transition: color .2s ease; }
.plan-breadcrumb a:hover { color: var(--leaf); }
.plan-breadcrumb strong { color: var(--text); }
.plan-eyebrow {
	margin-top: 24px;
	font-family: var(--font-display);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .28em;
	color: var(--gold);
	animation: heroRise .9s var(--ease-out) .1s both;
}
.plan-hero h1 {
	margin-top: 24px;
	font-family: var(--font-display);
	font-size: clamp(68px, 12vw, 164px);
	font-weight: 800;
	line-height: .96;
	letter-spacing: .015em;
	filter: drop-shadow(0 18px 60px rgba(0, 0, 0, .55));
	animation: heroRise 1s var(--ease-out) .2s both;
}
.plan-hero-intro {
	max-width: 520px;
	margin: 22px auto 0;
	color: var(--text-dim);
	font-size: 15px;
	line-height: 1.7;
	animation: heroRise 1s var(--ease-out) .36s both;
}
.plan-live-card {
	width: min(690px, 100%);
	margin: 32px auto 0;
	padding: 21px 24px;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	border: 1px solid rgba(143, 221, 85, .25);
	border-radius: 22px;
	background: rgba(12, 17, 10, .62);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 26px 70px rgba(0, 0, 0, .24);
	text-align: left;
	animation: heroRise 1s var(--ease-out) .5s both;
}
.plan-live-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--gold);
	box-shadow: 0 0 0 7px rgba(245, 190, 79, .08);
}
.is-loaded .plan-live-dot { background: var(--leaf); box-shadow: 0 0 0 7px rgba(143, 221, 85, .09); animation: pulseDot 2.4s ease infinite; }
.has-plan-stale .plan-live-dot { background: var(--gold); box-shadow: 0 0 0 7px rgba(245, 190, 79, .09); animation: none; }
.has-plan-error:not(.has-plan-data) .plan-live-dot { background: var(--danger); box-shadow: 0 0 0 7px rgba(224, 90, 77, .08); animation: none; }
.plan-live-card div { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.plan-live-card strong {
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1;
	color: var(--leaf);
}
.plan-live-card div span { color: var(--text); font-size: 15px; font-weight: 700; }
.plan-live-card small { color: var(--text-faint); font-size: 10px; white-space: nowrap; }

.plan-status {
	width: min(690px, 100%);
	margin: 12px auto 0;
	padding: 11px 16px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 16px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255, 255, 255, .018);
	color: var(--text-faint);
	font-size: 10px;
	text-align: left;
	animation: heroRise 1s var(--ease-out) .62s both;
}
.plan-status-state { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.plan-status-state i { flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.plan-status-state b { overflow: hidden; color: var(--text-dim); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.is-loaded .plan-status-state i { background: var(--leaf); }
.has-plan-stale .plan-status-state i { background: var(--gold); }
.has-plan-error .plan-status-state i { background: var(--danger); }
.plan-status .plan-updated { white-space: nowrap; }
.plan-refresh { padding: 5px 1px; color: var(--aqua); font-size: 10px; font-weight: 700; border-bottom: 1px solid rgba(94, 214, 196, .35); }
.plan-refresh:hover { color: var(--text); border-color: var(--text); }
.plan-refresh:disabled { opacity: .42; cursor: wait; }
.plan-error { width: min(690px, 100%); margin: 10px auto 0; color: rgba(224, 132, 120, .9); font-size: 11px; }
.plan-noscript { margin-top: 100px; padding: 20px; border: 1px solid rgba(224, 90, 77, .35); color: var(--text-dim); text-align: center; }

/* ---------- 通用区块 ---------- */
.plan-section { position: relative; padding: 104px 0; }
.plan-section-alt { background: rgba(255, 255, 255, .012); }
.plan-section-head { max-width: 780px; margin-bottom: 42px; }
.plan-section-head h2 {
	margin-top: 14px;
	font-size: clamp(38px, 5.2vw, 68px);
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -.025em;
}
.plan-section-head > p:last-child { margin-top: 20px; color: var(--text-dim); font-size: 14px; line-height: 1.95; }

/* ---------- 总览刻度 ---------- */
.plan-metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.plan-metric {
	position: relative;
	min-height: 220px;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: rgba(255, 255, 255, .018);
	overflow: hidden;
	transition: transform .3s var(--ease-out), border-color .3s ease;
}
.plan-metric::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(circle at 86% 8%, rgba(94, 214, 196, .08), transparent 42%);
}
.plan-metric:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.plan-metric-live { border-color: rgba(143, 221, 85, .22); background: linear-gradient(145deg, rgba(143, 221, 85, .07), rgba(255, 255, 255, .014)); }
.plan-metric-live::before { background: radial-gradient(circle at 82% 10%, rgba(143, 221, 85, .16), transparent 43%); }
.plan-metric-code {
	position: absolute;
	top: 24px;
	right: 25px;
	font-family: var(--font-display);
	font-size: 10px;
	letter-spacing: .17em;
	color: var(--text-faint);
}
.plan-metric > h3 { color: var(--text-dim); font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.plan-metric > div { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; margin-top: 17px; }
.plan-metric strong { font-family: var(--font-display); font-size: clamp(37px, 4.2vw, 58px); line-height: 1; color: var(--text); }
.plan-metric-live strong { color: var(--leaf); }
.plan-metric > div span { color: var(--text-dim); font-size: 12px; }

.plan-record-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.plan-record { min-width: 0; padding: 28px 30px; }
.plan-record + .plan-record { border-left: 1px solid var(--line); }
.plan-record > h3 { color: var(--text-faint); font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.plan-record strong { display: block; margin-top: 9px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 30px); color: var(--text); }
.plan-record strong b { font: inherit; color: var(--gold); }
.plan-record-peak strong { color: var(--gold); }
.plan-record small { display: block; margin-top: 7px; color: var(--text-faint); font-size: 10px; }

/* ---------- 运行趋势 ---------- */
.plan-trends { margin-top: 76px; }
.plan-trend-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.plan-trend-head h3 { margin-top: 9px; font-size: clamp(27px, 3.4vw, 42px); }
#plan-chart-status { padding-bottom: 5px; color: var(--text-faint); font-size: 10px; letter-spacing: .08em; }
.plan-trend-controls {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 18px 30px;
	margin-bottom: 16px;
	padding: 17px 20px;
	border: 1px solid var(--line);
	border-radius: 20px;
	background: rgba(255, 255, 255, .015);
}
.plan-control-group { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.plan-control-group > span, .plan-control-label { color: var(--text-faint); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.plan-segmented { display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 13px; background: var(--bg); }
.plan-segmented button, .plan-metric-picker button, .plan-node-picker button, .plan-chart-reset {
	min-height: 32px;
	padding: 7px 12px;
	border: 1px solid transparent;
	border-radius: 9px;
	color: var(--text-faint);
	font-size: 10px;
	font-weight: 700;
	transition: color .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}
.plan-segmented button:hover, .plan-metric-picker button:hover, .plan-node-picker button:hover, .plan-chart-reset:hover:not(:disabled) { color: var(--text); border-color: var(--line-strong); }
.plan-segmented button.is-active, .plan-metric-picker button.is-active { border-color: rgba(143, 221, 85, .28); background: rgba(143, 221, 85, .09); color: var(--leaf); }
.plan-performance-shell {
	border: 1px solid var(--line);
	border-radius: 30px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .008));
	overflow: hidden;
}
.plan-chart-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr) auto;
	align-items: end;
	gap: 20px;
	padding: 22px 24px;
	border-bottom: 1px solid var(--line);
}
.plan-chart-toolbar > div { min-width: 0; }
.plan-chart-toolbar.is-network { grid-template-columns: minmax(0, 1fr) auto; }
.plan-chart-toolbar .plan-control-label { display: block; margin-bottom: 10px; }
.plan-metric-picker, .plan-node-picker { display: flex; flex-wrap: wrap; gap: 6px; }
.plan-metric-picker button, .plan-node-picker button { border-color: var(--line); background: rgba(255, 255, 255, .018); }
.plan-node-picker[hidden] { display: none; }
.plan-node-picker button { display: inline-flex; align-items: center; gap: 7px; }
.plan-node-picker button::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--node-color, var(--text-faint)); opacity: .34; transition: opacity .2s ease, box-shadow .2s ease; }
.plan-node-picker button.is-active { color: var(--text); border-color: color-mix(in srgb, var(--node-color) 40%, transparent); background: color-mix(in srgb, var(--node-color) 8%, transparent); }
.plan-node-picker button.is-active::before { opacity: 1; box-shadow: 0 0 12px color-mix(in srgb, var(--node-color) 60%, transparent); }
.plan-chart-reset { align-self: end; border-color: var(--line); color: var(--aqua); }
.plan-chart-reset:disabled { opacity: .3; cursor: default; }
.plan-chart-stage { padding: 26px 26px 18px; transition: opacity .25s ease; }
.plan-chart-stage.is-loading { opacity: .55; }
.plan-chart-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.plan-chart-heading p { color: var(--text-faint); font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.plan-chart-heading h4 { margin-top: 6px; font-size: clamp(22px, 3vw, 34px); }
.plan-chart-heading > strong { padding-bottom: 4px; color: var(--gold); font-family: var(--font-display); font-size: 12px; letter-spacing: .08em; }
.plan-chart-frame { position: relative; }
#plan-performance-chart { display: block; width: 100%; aspect-ratio: 38 / 17; min-height: 270px; overflow: visible; touch-action: pan-y; user-select: none; outline: none; }
#plan-performance-chart:focus-visible { filter: drop-shadow(0 0 8px rgba(94, 214, 196, .26)); }
.plan-chart-gridline { stroke: rgba(244, 242, 230, .075); stroke-width: 1; vector-effect: non-scaling-stroke; }
.plan-chart-axis-label { fill: var(--text-faint); font-family: var(--font-body); font-size: 9px; }
.plan-chart-series { fill: none; stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; filter: drop-shadow(0 0 5px rgba(255, 255, 255, .06)); }
.plan-chart-crosshair { stroke: rgba(244, 242, 230, .35); stroke-width: 1; stroke-dasharray: 3 4; vector-effect: non-scaling-stroke; pointer-events: none; }
.plan-chart-crosshair.is-hidden, .plan-chart-selection.is-hidden { display: none; }
.plan-chart-focus-point { stroke: var(--bg); stroke-width: 2; vector-effect: non-scaling-stroke; pointer-events: none; }
.plan-chart-selection { fill: rgba(94, 214, 196, .12); stroke: rgba(94, 214, 196, .45); stroke-width: 1; vector-effect: non-scaling-stroke; pointer-events: none; }
.plan-chart-interaction { fill: transparent; cursor: crosshair; }
.plan-chart-empty { position: absolute; inset: 0; display: grid; place-items: center; color: var(--text-faint); font-size: 11px; letter-spacing: .08em; pointer-events: none; }
.plan-chart-empty[hidden] { display: none; }
.plan-chart-stage.is-empty #plan-performance-chart { opacity: .2; }
.plan-chart-tooltip {
	position: absolute;
	top: 42px;
	z-index: 3;
	min-width: 168px;
	padding: 12px 14px;
	border: 1px solid var(--line-strong);
	border-radius: 14px;
	background: rgba(7, 10, 7, .94);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .38);
	backdrop-filter: blur(12px);
	transform: translateX(-50%);
	pointer-events: none;
}
.plan-chart-tooltip[hidden] { display: none; }
.plan-chart-tooltip time { display: block; margin-bottom: 8px; color: var(--text-dim); font-size: 10px; }
.plan-chart-tooltip span { display: flex; align-items: center; gap: 7px; margin-top: 5px; color: var(--text-faint); font-size: 10px; }
.plan-chart-tooltip span i, .plan-chart-legend i, .plan-stat-table th i { flex: 0 0 auto; width: 7px; height: 7px; border-radius: 50%; }
.plan-chart-tooltip span b { margin-left: auto; color: var(--text); font-weight: 700; }
.plan-chart-legend { min-height: 19px; display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 4px 0 0 58px; }
.plan-chart-legend span { display: inline-flex; align-items: center; gap: 7px; color: var(--text-dim); font-size: 10px; }
.plan-chart-hint { margin: 13px 0 0 58px; color: var(--text-faint); font-size: 9px; line-height: 1.7; }
.plan-visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.plan-stat-table-wrap, .plan-snapshot-table-wrap { overflow-x: auto; scrollbar-color: var(--line-strong) transparent; }
.plan-stat-table-wrap { border-top: 1px solid var(--line); }
.plan-stat-table, .plan-snapshot-table { width: 100%; border-collapse: collapse; font-size: 10px; white-space: nowrap; }
.plan-stat-table caption { padding: 15px 24px 8px; color: var(--text-faint); text-align: left; font-size: 9px; font-weight: 700; letter-spacing: .11em; }
.plan-stat-table th, .plan-stat-table td, .plan-snapshot-table th, .plan-snapshot-table td { padding: 12px 16px; border-top: 1px solid rgba(244, 242, 230, .055); text-align: right; }
.plan-stat-table thead th, .plan-snapshot-table thead th { color: var(--text-faint); font-size: 9px; font-weight: 600; }
.plan-stat-table th:first-child, .plan-stat-table td:first-child, .plan-snapshot-table th:first-child, .plan-snapshot-table td:first-child { text-align: left; }
.plan-stat-table tbody th { color: var(--text); font-weight: 700; }
.plan-stat-table tbody th i { display: inline-block; margin-right: 8px; }
.plan-stat-table tbody td { color: var(--text-dim); font-family: var(--font-display); }
.plan-node-snapshot { margin-top: 22px; border: 1px solid var(--line); border-radius: 26px; background: rgba(255, 255, 255, .014); overflow: hidden; }
.plan-node-snapshot > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.plan-node-snapshot h4 { margin-top: 7px; font-size: 22px; }
.plan-node-snapshot header small { max-width: 310px; color: var(--text-faint); font-size: 9px; line-height: 1.6; text-align: right; }
.plan-snapshot-table { min-width: 1120px; }
.plan-snapshot-table tbody th { color: var(--text); font-size: 11px; }
.plan-snapshot-table tbody td { color: var(--text-dim); }
.plan-snapshot-table tbody tr:first-child { background: linear-gradient(90deg, rgba(143, 221, 85, .055), transparent); }
.plan-snapshot-table tbody tr:first-child th { color: var(--leaf); }
.plan-aggregate-note { margin-top: 16px; padding: 16px 18px; border-left: 2px solid rgba(94, 214, 196, .45); color: var(--text-faint); font-size: 10px; line-height: 1.8; }
.is-refreshing-performance .plan-chart-series { opacity: .55; }

/* ---------- 活跃时间窗 ---------- */
.plan-activity-grid { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.plan-activity-grid::before {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	top: 57px;
	height: 1px;
	background: var(--grad);
	opacity: .4;
}
.plan-activity-card {
	position: relative;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background: #0f120d;
	overflow: hidden;
}
.plan-period { position: relative; z-index: 1; display: flex; align-items: center; gap: 15px; }
.plan-period b {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line-strong);
	border-radius: 50%;
	background: var(--bg-2);
	font-family: var(--font-display);
	font-size: 13px;
	color: var(--gold);
}
.plan-activity-card:nth-child(2) .plan-period b { color: var(--leaf); }
.plan-activity-card:nth-child(3) .plan-period b { color: var(--aqua); }
.plan-period h3 { font-size: 15px; font-weight: 800; }
.plan-activity-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 46px; }
.plan-activity-card dl div { padding: 18px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .018); }
.plan-activity-card dt { color: var(--text-faint); font-size: 10px; }
.plan-activity-card dd { margin-top: 9px; font-family: var(--font-display); font-size: clamp(25px, 3vw, 38px); line-height: 1; color: var(--text); }
.plan-activity-card dl div:last-child dd { color: var(--leaf); }

.plan-data-note {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 24px;
	padding: 18px 22px;
	border: 1px solid var(--line);
	border-radius: 16px;
}
.plan-data-note > p { color: var(--text-dim); font-size: 11px; }
.plan-data-note > a { color: var(--aqua); font-size: 11px; font-weight: 700; white-space: nowrap; }
.plan-data-note > a span { display: inline-block; margin-left: 4px; transition: transform .2s var(--ease-out); }
.plan-data-note > a:hover span { transform: translate(2px, -2px); }

/* ---------- 收束 ---------- */
.plan-finale { position: relative; padding: 112px 0 108px; text-align: center; overflow: hidden; }
.plan-finale::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 72%, rgba(143, 221, 85, .1), transparent 44%); }
.plan-finale h2 { font-size: clamp(39px, 6.4vw, 76px); line-height: 1.1; }
.plan-finale-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

/* ---------- 数据状态 ---------- */
.is-loading [data-plan-key], .is-refreshing [data-plan-key] { opacity: .35; }
.is-loading [data-plan-key] { animation: planDataPulse 1.25s ease-in-out infinite alternate; }
@keyframes planDataPulse { to { opacity: .7; } }

/* ---------- 响应式 ---------- */
@media (max-width: 1120px) {
	.plan-metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
	.plan-hero-inner { padding-top: 104px; }
	.plan-section { padding: 94px 0; }
	.plan-section-head { margin-bottom: 46px; }
	.plan-record-grid { grid-template-columns: 1fr; }
	.plan-record + .plan-record { border-left: 0; border-top: 1px solid var(--line); }
	.plan-chart-toolbar { grid-template-columns: 1fr; align-items: start; }
	.plan-chart-toolbar.is-network { grid-template-columns: 1fr; }
	.plan-chart-reset { justify-self: start; }
	.plan-activity-grid { grid-template-columns: 1fr; }
	.plan-activity-grid::before { left: 56px; right: auto; top: 42px; bottom: 42px; width: 1px; height: auto; }
	.plan-activity-card { padding: 26px; }
	.plan-activity-card dl { margin-top: 30px; }
	.plan-data-note { align-items: flex-start; flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
	.plan-hero h1 { font-size: clamp(53px, 16vw, 82px); }
	.plan-hero-intro { font-size: 13px; }
	.plan-orbit-one { width: 112vw; }
	.plan-orbit-two { width: 132vw; }
	.plan-live-card { grid-template-columns: auto minmax(0, 1fr); padding: 18px; }
	.plan-live-card div { align-items: flex-start; flex-direction: column; gap: 4px; }
	.plan-live-card div span { font-size: 12px; }
	.plan-live-card small { grid-column: 2; white-space: normal; }
	.plan-status { grid-template-columns: 1fr auto; gap: 8px 12px; }
	.plan-status .plan-updated { grid-column: 1 / -1; grid-row: 2; }
	.plan-refresh { grid-column: 2; grid-row: 1; }
	.plan-metric-grid { grid-template-columns: 1fr; }
	.plan-metric { min-height: 190px; }
	.plan-trends { margin-top: 62px; }
	.plan-trend-head { align-items: flex-start; flex-direction: column; gap: 8px; }
	.plan-trend-controls { align-items: flex-start; flex-direction: column; padding: 14px; }
	.plan-control-group { width: 100%; align-items: flex-start; flex-direction: column; }
	.plan-segmented { max-width: 100%; }
	.plan-chart-toolbar { padding: 18px; }
	.plan-chart-stage { padding: 20px 14px 16px; }
	.plan-chart-heading { padding-inline: 2px; }
	#plan-performance-chart { min-height: 240px; }
	.plan-chart-legend, .plan-chart-hint { margin-left: 42px; }
	.plan-chart-tooltip { min-width: 148px; padding: 10px 12px; }
	.plan-node-snapshot > header { align-items: flex-start; flex-direction: column; }
	.plan-node-snapshot header small { text-align: left; }
	.plan-activity-card dl { grid-template-columns: 1fr 1fr; }
	.plan-data-note { padding: 26px 22px; }
	.plan-finale { padding: 112px 0 105px; }
}

@media (prefers-reduced-motion: reduce) {
	.plan-orbit, .plan-live-dot, .is-loading [data-plan-key] { animation: none !important; }
}
