:root {
	--color-bg: #0b1020;
	--color-bg-secondary: #141b30;
	--color-card: #1e2740;
	--color-text: #f3f7ff;
	--color-heading: #69c6ff;
	--color-primary: #2e9bff;
	--color-primary-hover: #1d7fe0;
	--color-accent: #ffb547;
	--color-highlight: #6ee7d8;
	--color-border: #32405f;
	--color-icon: #8d7cff;
	--color-success: #22c55e;
	--color-warning: #eab308;
	--color-danger: #ef4444;
	--color-muted: #9ca3af;
	--font-sans:
		-apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto,
		Helvetica, Arial, sans-serif;
	--font-mono: "SF Mono", "Roboto Mono", Menlo, Monaco, Consolas, monospace;
	--font-size-xs: 0.75rem;
	--font-size-sm: 0.875rem;
	--font-size-base: 1rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.25rem;
	--font-size-2xl: 1.5rem;
	--font-size-3xl: 1.875rem;
	--font-size-4xl: 2.25rem;
	--font-size-5xl: 3rem;
	--line-height-tight: 1.1;
	--line-height-snug: 1.25;
	--line-height-normal: 1.6;
	--line-height-relaxed: 1.8;
	--space-0: 0;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-7: 28px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--radius-xs: 2px;
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 12px;
	--radius-xl: 20px;
	--radius-pill: 999px;
	--shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.55);
	--shadow-elevated: 0 24px 60px rgba(0, 0, 0, 0.7);
	--shadow-glow-primary: 0 0 24px rgba(46, 155, 255, 0.7);
	--shadow-glow-accent: 0 0 24px rgba(255, 181, 71, 0.6);
	--transition-fast: 150ms ease-out;
	--transition-base: 220ms ease-out;
	--transition-slow: 320ms ease-out;
	--container-width: 1160px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html,
body {
	height: 100%;
}
html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
body {
	font-family: var(--font-sans);
	font-size: var(--font-size-base);
	line-height: var(--line-height-normal);
	background: radial-gradient(
		circle at top,
		#111933 0,
		#0b1020 55%,
		#050712 100%
	);
	color: var(--color-text);
	text-rendering: optimizeLegibility;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
img {
	height: auto;
}
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}
button {
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
}
a {
	text-decoration: none;
	color: inherit;
}
ul[role="list"],
ol[role="list"] {
	list-style: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}
#root,
#__next {
	isolation: isolate;
}
body {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}
body::before {
	content: "";
	position: fixed;
	inset: -40vh -40vw;
	background:
		radial-gradient(
			circle at 10% 0,
			rgba(142, 124, 255, 0.14) 0,
			transparent55%
		),
		radial-gradient(
			circle at 90% 0,
			rgba(110, 231, 216, 0.12) 0,
			transparent50%
		),
		radial-gradient(
			circle at 50% 110%,
			rgba(46, 155, 255, 0.35) 0,
			transparent60%
		);
	opacity: 0.9;
	pointer-events: none;
	z-index: -1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--color-heading);
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
h1 {
	font-size: clamp(2.5rem, 4vw, 3.25rem);
	line-height: var(--line-height-tight);
	margin-bottom: var(--space-6);
}
h2 {
	font-size: clamp(1.75rem, 2.6vw, 2.25rem);
	line-height: var(--line-height-snug);
	margin-bottom: var(--space-5);
}
h3 {
	font-size: clamp(1.4rem, 2vw, 1.75rem);
	line-height: var(--line-height-snug);
	margin-bottom: var(--space-4);
}
h4 {
	font-size: 1.25rem;
	margin-bottom: var(--space-3);
}
h5 {
	font-size: 1.125rem;
	margin-bottom: var(--space-2);
}
h6 {
	font-size: 1rem;
	margin-bottom: var(--space-1);
}
p {
	margin-bottom: var(--space-4);
	color: var(--color-text);
}
a {
	color: var(--color-primary);
	transition:
		color var(--transition-base),
		text-shadow var(--transition-base),
		opacity var(--transition-fast);
}
a:hover {
	color: var(--color-primary-hover);
	text-shadow: 0 0 12px rgba(46, 155, 255, 0.8);
}
a:active {
	opacity: 0.85;
}
strong,
b {
	font-weight: 600;
}
code,
kbd,
pre,
samp {
	font-family: var(--font-mono);
}
hr {
	border: 0;
	border-top: 1px solid rgba(50, 64, 95, 0.8);
	margin: var(--space-8) 0;
}
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--space-4);
}
@media (min-width: 1280px) {
	.container {
		max-width: 1240px;
	}
}
.layout-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.layout-main {
	flex: 1 0 auto;
}
.layout-footer {
	flex-shrink: 0;
}
.flex {
	display: flex;
}
.flex-row {
	flex-direction: row;
}
.flex-col {
	flex-direction: column;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-wrap {
	flex-wrap: wrap;
}
.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.gap-2 {
	gap: var(--space-2);
}
.gap-4 {
	gap: var(--space-4);
}
.gap-6 {
	gap: var(--space-6);
}
.gap-8 {
	gap: var(--space-8);
}
.grid {
	display: grid;
}
.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-auto-fit {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-gap-4 {
	gap: var(--space-4);
}
.grid-gap-6 {
	gap: var(--space-6);
}
.section {
	padding: var(--space-12) 0;
}
.section-alt {
	background:
		radial-gradient(
			circle at top left,
			rgba(142, 124, 255, 0.16) 0,
			transparent55%
		),
		var(--color-bg-secondary);
}
.surface-blur {
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	background: linear-gradient(
		135deg,
		rgba(30, 39, 64, 0.92),
		rgba(10, 14, 32, 0.94)
	);
}
.card {
	background:
		radial-gradient(circle at top, rgba(142, 124, 255, 0.22) 0, transparent40%),
		var(--color-card);
	border: 1px solid rgba(50, 64, 95, 0.9);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	box-shadow: var(--shadow-soft);
	position: relative;
	overflow: hidden;
}
.card::before {
	content: "";
	position: absolute;
	inset: -40%;
	background:
		radial-gradient(circle at 0 0, rgba(46, 155, 255, 0.15) 0, transparent55%),
		radial-gradient(circle at 100% 0, rgba(255, 181, 71, 0.1) 0, transparent55%);
	opacity: 0.75;
	pointer-events: none;
	z-index: -1;
}
.card-header {
	margin-bottom: var(--space-4);
}
.card-title {
	font-size: var(--font-size-xl);
	margin-bottom: var(--space-2);
}
.card-meta {
	font-size: var(--font-size-sm);
	color: var(--color-muted);
}
.card-compact {
	padding: var(--space-4);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: 0.75rem 1.5rem;
	border-radius: var(--radius-pill);
	font-size: var(--font-size-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
	white-space: nowrap;
	background: linear-gradient(135deg, #2e9bff, #8d7cff);
	color: #020617;
	box-shadow: var(--shadow-glow-primary);
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		background var(--transition-base),
		border-color var(--transition-base),
		color var(--transition-base),
		opacity var(--transition-fast);
}
.btn::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at 0 0,
		rgba(255, 255, 255, 0.35) 0,
		transparent40%
	);
	mix-blend-mode: screen;
	opacity: 0;
	transition: opacity var(--transition-base);
}
.btn:hover {
	transform: translateY(-1px) scale(1.01);
	box-shadow:
		0 0 0 1px rgba(46, 155, 255, 0.8),
		0 0 26px rgba(46, 155, 255, 0.85);
	background: linear-gradient(135deg, #1d7fe0, #8d7cff);
}
.btn:hover::before {
	opacity: 1;
}
.btn:active {
	transform: translateY(0) scale(0.99);
	box-shadow:
		0 0 0 1px rgba(46, 155, 255, 0.9),
		0 0 18px rgba(46, 155, 255, 0.9);
	opacity: 0.95;
}
.btn-primary {
	background: linear-gradient(135deg, #2e9bff, #8d7cff);
	color: #020617 !important;
}
.btn-secondary {
	background: linear-gradient(135deg, #1e2740, #32405f);
	color: var(--color-text) !important;
	border-color: rgba(110, 231, 216, 0.28);
	box-shadow:
		0 0 0 1px rgba(110, 231, 216, 0.3),
		0 0 22px rgba(110, 231, 216, 0.35);
}
.btn-secondary:hover {
	border-color: rgba(110, 231, 216, 0.6);
	box-shadow:
		0 0 0 1px rgba(110, 231, 216, 0.9),
		0 0 28px rgba(110, 231, 216, 0.85);
}
.btn-ghost {
	background: transparent;
	border-color: rgba(50, 64, 95, 0.9);
	color: var(--color-text) !important;
	box-shadow: none;
}
.btn-ghost:hover {
	background: rgba(24, 33, 60, 0.85);
	border-color: rgba(142, 124, 255, 0.9);
}
.btn-icon {
	padding: 0.6rem 0.8rem;
	aspect-ratio: 1/1;
}
.btn[disabled],
.btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
	box-shadow: none;
	transform: none;
}
.btn-sm {
	padding: 0.55rem 1.1rem;
	font-size: var(--font-size-xs);
}
.btn-lg {
	padding: 0.9rem 1.8rem;
	font-size: var(--font-size-base);
}
.field {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	margin-bottom: var(--space-4);
}
.field-label {
	font-size: var(--font-size-sm);
	font-weight: 500;
	color: var(--color-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.field-description {
	font-size: var(--font-size-xs);
	color: var(--color-muted);
}
.input,
.textarea,
.select {
	width: 100%;
	border-radius: var(--radius-md);
	border: 1px solid rgba(50, 64, 95, 0.9);
	background:
		radial-gradient(circle at top, rgba(142, 124, 255, 0.16) 0, transparent45%),
		rgba(10, 14, 32, 0.96);
	color: var(--color-text);
	padding: 0.7rem 0.9rem;
	font-size: var(--font-size-sm);
	outline: none;
	transition:
		border-color var(--transition-base),
		box-shadow var(--transition-base),
		background var(--transition-base),
		transform var(--transition-fast);
}
.textarea {
	min-height: 120px;
	resize: vertical;
	padding-top: 0.8rem;
	padding-bottom: 0.8rem;
}
.select {
	padding-right: 2.25rem;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #69c6ff 50%),
		linear-gradient(135deg, #69c6ff 50%, transparent 50%);
	background-position:
		calc(100% - 16px) calc(50% - 3px),
		calc(100% - 11px) calc(50% - 3px);
	background-size: 6px 6px;
	background-repeat: no-repeat;
}
.input::placeholder,
.textarea::placeholder {
	color: #64748b;
}
.input:focus,
.textarea:focus,
.select:focus {
	border-color: rgba(46, 155, 255, 0.9);
	box-shadow:
		0 0 0 1px rgba(46, 155, 255, 0.9),
		0 0 18px rgba(46, 155, 255, 0.75);
	background:
		radial-gradient(circle at top, rgba(46, 155, 255, 0.18) 0, transparent45%),
		rgba(8, 12, 28, 0.98);
	transform: translateY(-1px);
}
.input[aria-invalid="true"],
.textarea[aria-invalid="true"] {
	border-color: rgba(239, 68, 68, 0.8);
	box-shadow:
		0 0 0 1px rgba(239, 68, 68, 0.7),
		0 0 12px rgba(239, 68, 68, 0.8);
}
.input:disabled,
.textarea:disabled,
.select:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.6rem;
	border-radius: var(--radius-pill);
	font-size: var(--font-size-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(20, 27, 48, 0.95);
	border: 1px solid rgba(110, 231, 216, 0.45);
	color: var(--color-highlight);
}
.badge-accent {
	border-color: rgba(255, 181, 71, 0.65);
	color: var(--color-accent);
}
.tag-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.18rem 0.55rem;
	border-radius: var(--radius-pill);
	font-size: var(--font-size-xs);
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(50, 64, 95, 0.9);
	color: var(--color-muted);
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.7rem;
	border-radius: 999px;
	font-size: var(--font-size-xs);
	border: 1px solid rgba(148, 163, 184, 0.4);
	background: rgba(15, 23, 42, 0.85);
	color: var(--color-muted);
}
.chip-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-highlight);
	box-shadow: 0 0 12px rgba(110, 231, 216, 0.9);
}
.pill-status-online {
	background: rgba(22, 163, 74, 0.2);
	border-color: rgba(22, 163, 74, 0.65);
	color: #4ade80;
}
.pill-status-danger {
	background: rgba(220, 38, 38, 0.2);
	border-color: rgba(220, 38, 38, 0.65);
	color: #fca5a5;
}
.surface-panel {
	background: linear-gradient(
		145deg,
		rgba(20, 27, 48, 0.97),
		rgba(9, 13, 29, 0.98)
	);
	border-radius: var(--radius-xl);
	border: 1px solid rgba(50, 64, 95, 0.9);
	box-shadow: var(--shadow-elevated);
	position: relative;
	overflow: hidden;
}
.surface-panel::before {
	content: "";
	position: absolute;
	inset: -50%;
	background:
		radial-gradient(circle at 0 0, rgba(110, 231, 216, 0.18) 0, transparent55%),
		radial-gradient(
			circle at 100% 0,
			rgba(141, 124, 255, 0.16) 0,
			transparent55%
		);
	opacity: 0.85;
	pointer-events: none;
	z-index: -1;
}
.surface-divider {
	height: 1px;
	width: 100%;
	background: linear-gradient(
		90deg,
		rgba(110, 231, 216, 0),
		rgba(110, 231, 216, 0.8),
		rgba(110, 231, 216, 0)
	);
	box-shadow: 0 0 22px rgba(110, 231, 216, 0.8);
	opacity: 0.65;
}
.surface-glass {
	background:
		radial-gradient(circle at top, rgba(110, 231, 216, 0.16) 0, transparent45%),
		rgba(15, 23, 42, 0.9);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(148, 163, 184, 0.35);
}
.nav-blur {
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	background: linear-gradient(
		90deg,
		rgba(10, 14, 32, 0.96),
		rgba(24, 33, 60, 0.92),
		rgba(10, 14, 32, 0.96)
	);
	border-bottom: 1px solid rgba(50, 64, 95, 0.9);
}
.hero-grid-bg {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(
		circle at 1px 1px,
		rgba(51, 65, 85, 0.9) 1px,
		transparent0
	);
	background-size: 36px 36px;
	opacity: 0.28;
	mix-blend-mode: screen;
	pointer-events: none;
}
.hero-orbit {
	position: absolute;
	border-radius: 999px;
	border: 1px solid rgba(46, 155, 255, 0.4);
	box-shadow: 0 0 40px rgba(46, 155, 255, 0.8);
	opacity: 0.6;
	pointer-events: none;
}
.hero-orbit--1 {
	width: 340px;
	height: 340px;
	top: 12%;
	right: 2%;
}
.hero-orbit--2 {
	width: 480px;
	height: 480px;
	bottom: -10%;
	left: 5%;
	border-color: rgba(110, 231, 216, 0.45);
	box-shadow: 0 0 40px rgba(110, 231, 216, 0.8);
}
.galaxy-gradient {
	background:
		radial-gradient(circle at top, rgba(46, 155, 255, 0.35) 0, transparent50%),
		radial-gradient(
			circle at 0 100%,
			rgba(110, 231, 216, 0.16) 0,
			transparent55%
		),
		radial-gradient(
			circle at 100% 0,
			rgba(141, 124, 255, 0.28) 0,
			transparent55%
		);
}
.halo-ring {
	position: absolute;
	inset: 8%;
	border-radius: 999px;
	border: 1px dashed rgba(148, 163, 184, 0.35);
	mix-blend-mode: screen;
	pointer-events: none;
}
.subtle-glow {
	box-shadow: 0 0 24px rgba(46, 155, 255, 0.5);
}
.badge-section {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: 0.35rem 0.75rem;
	border-radius: var(--radius-pill);
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(56, 189, 248, 0.55);
	font-size: var(--font-size-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-highlight);
}
.badge-section-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--color-highlight);
	box-shadow: 0 0 14px rgba(110, 231, 216, 0.9);
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.focus-outline {
	outline: 2px solid transparent;
	outline-offset: 2px;
}
.skip-link {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.75rem 1rem;
	background: #020617;
	color: var(--color-text);
	transform: translateY(-100%);
	transition: transform var(--transition-fast);
	z-index: 50;
}
.skip-link:focus {
	transform: translateY(0);
}
:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
	box-shadow:
		0 0 0 1px rgba(15, 23, 42, 0.95),
		0 0 0 4px rgba(255, 181, 71, 0.85);
}
:focus:not(:focus-visible) {
	outline: none;
	box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-snap-type: none !important;
	}
	.hero-orbit,
	.hero-grid-bg {
		animation: none;
	}
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-muted {
	color: var(--color-muted);
}
.text-accent {
	color: var(--color-accent);
}
.text-highlight {
	color: var(--color-highlight);
}
.mt-0 {
	margin-top: 0;
}
.mt-4 {
	margin-top: var(--space-4);
}
.mt-6 {
	margin-top: var(--space-6);
}
.mt-8 {
	margin-top: var(--space-8);
}
.mb-0 {
	margin-bottom: 0;
}
.mb-2 {
	margin-bottom: var(--space-2);
}
.mb-4 {
	margin-bottom: var(--space-4);
}
.mb-6 {
	margin-bottom: var(--space-6);
}
.mb-8 {
	margin-bottom: var(--space-8);
}
.pt-4 {
	padding-top: var(--space-4);
}
.pt-8 {
	padding-top: var(--space-8);
}
.pb-4 {
	padding-bottom: var(--space-4);
}
.pb-8 {
	padding-bottom: var(--space-8);
}
.rounded-xs {
	border-radius: var(--radius-xs);
}
.rounded-sm {
	border-radius: var(--radius-sm);
}
.rounded-md {
	border-radius: var(--radius-md);
}
.rounded-lg {
	border-radius: var(--radius-lg);
}
.rounded-xl {
	border-radius: var(--radius-xl);
}
.rounded-pill {
	border-radius: var(--radius-pill);
}
.bordered {
	border: 1px solid rgba(50, 64, 95, 0.9);
}
.shadow-soft {
	box-shadow: var(--shadow-soft);
}
.shadow-elevated {
	box-shadow: var(--shadow-elevated);
}
.shadow-glow-primary {
	box-shadow: var(--shadow-glow-primary);
}
.shadow-glow-accent {
	box-shadow: var(--shadow-glow-accent);
}
.bg-primary {
	background: var(--color-primary);
}
.bg-secondary {
	background: var(--color-bg-secondary);
}
.bg-card {
	background: var(--color-card);
}
.bg-gradient-galaxy {
	background:
		radial-gradient(circle at 0 0, rgba(46, 155, 255, 0.3) 0, transparent55%),
		radial-gradient(
			circle at 100% 0,
			rgba(141, 124, 255, 0.25) 0,
			transparent55%
		),
		radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.95) 0, #020617 60%);
}
.inline-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-icon);
}
.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--color-highlight);
	box-shadow: 0 0 14px rgba(110, 231, 216, 0.95);
}
.status-dot-danger {
	background: var(--color-danger);
	box-shadow: 0 0 16px rgba(239, 68, 68, 0.95);
}
.timeline-line {
	width: 2px;
	background: linear-gradient(
		to bottom,
		rgba(46, 155, 255, 0.1),
		rgba(46, 155, 255, 0.85)
	);
	border-radius: 999px;
}
.pill-nav {
	display: inline-flex;
	align-items: center;
	padding: 0.2rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(51, 65, 85, 0.9);
}
.pill-nav-item {
	padding: 0.38rem 0.9rem;
	border-radius: 999px;
	font-size: var(--font-size-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-muted);
	transition:
		background var(--transition-base),
		color var(--transition-base),
		box-shadow var(--transition-base);
}
.pill-nav-item.is-active {
	background: radial-gradient(
		circle at top,
		rgba(46, 155, 255, 0.45) 0,
		transparent55%
	);
	color: var(--color-text);
	box-shadow:
		0 0 0 1px rgba(46, 155, 255, 0.9),
		0 0 18px rgba(46, 155, 255, 0.8);
}
.table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 6px;
	font-size: var(--font-size-sm);
}
.table thead tr {
	color: var(--color-muted);
	font-size: var(--font-size-xs);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.table th,
.table td {
	padding: 0.6rem 0.75rem;
	text-align: left;
}
.table tbody tr {
	background: rgba(15, 23, 42, 0.9);
	border-radius: var(--radius-md);
	border: 1px solid rgba(30, 41, 59, 0.9);
}
.table tbody tr:hover {
	border-color: rgba(46, 155, 255, 0.85);
	box-shadow: 0 0 18px rgba(46, 155, 255, 0.7);
}
.table tbody tr td:first-child {
	border-top-left-radius: var(--radius-md);
	border-bottom-left-radius: var(--radius-md);
}
.table tbody tr td:last-child {
	border-top-right-radius: var(--radius-md);
	border-bottom-right-radius: var(--radius-md);
}
@media (max-width: 768px) {
	.section {
		padding: var(--space-8) 0;
	}
	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
	}
	.hero-orbit--1,
	.hero-orbit--2 {
		opacity: 0.35;
	}
}
