[v-cloak]{display:none}

:root{
	--bg:#0b0f14;
	--panel:#0f1620;
	--panel2:#0c121a;
	--line:rgba(255,255,255,.08);
	--text:rgba(255,255,255,.92);
	--muted:rgba(255,255,255,.62);
	--accent:#ff6600;
	--accent2:rgba(255,102,0,.18);
	--shadow:0 10px 30px rgba(0,0,0,.35);
	--icon:rgba(255,255,255,.92);
	--r:16px
}

html[data-theme="light"]{
	--bg:#f6f7f9;
	--panel:#ffffff;
	--panel2:#f1f3f6;
	--line:rgba(0,0,0,.08);
	--text:#0b0f14;
	--muted:rgba(0,0,0,.6);
	--accent:rgba(255,102,0,.8);
	--accent2:rgba(255,102,0,.6);
	--shadow:0 10px 30px rgba(0,0,0,.08);
	--icon:rgba(0,0,0,.8);
}

*{box-sizing:border-box}
html,body{height:100%}

body{
	margin:0;
	font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
	background: var(--bg);
	color:var(--text)
}

.shell{
	min-height:100vh;
	display:grid;
	grid-template-columns:280px 1fr
}

.sidebar{
	position:sticky;
	top:0;
	height:100vh;
	padding:18px;
	background:linear-gradient(180deg,var(--panel),var(--panel2));
	border-right:1px solid var(--line)
}

.main{
	padding:18px 18px 28px;
	max-width:1100px
}

.brandrow{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px
}

.brand{
	display:flex;
	align-items:center;
	gap:12px;
	padding:10px;
	border:1px solid var(--line);
	border-radius:var(--r);
	box-shadow:var(--shadow);
	width: 100%;
}

.logo{
	width:45px;
	height:45px;
	display:flex;
	align-items:center;
	justify-content:center;
	border-radius:14px;
	color:#0b0f14;
	font-weight:800
}

.brandtext .name{font-weight:700}
.brandtext .tag{margin-top:2px;color:var(--muted);font-size:12px}

.nav{
	margin-top:18px;
	display:flex;
	flex-direction:column;
	gap:8px
}

.navitem{
	padding:10px 12px;
	border-radius:12px;
	text-decoration:none;
	color:var(--text);
	border:1px solid transparent
}

.navitem:hover{
	border-color:var(--line);
	background:rgba(255,255,255,.03)
}

.sideactions{
	margin-top:18px;
	display:flex;
	flex-direction:column;
	gap:10px
}

.theme-toggle{
	margin-top:6px
}

.btn{
	border:1px solid var(--line);
	background:rgba(255,255,255,.03);
	color:var(--text);
	padding:10px 12px;
	border-radius:14px;
	cursor:pointer;
	text-decoration:none;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	font-weight:600
}

.btn:hover{background:rgba(255,255,255,.06)}

.btn-primary{
	background:linear-gradient(180deg,var(--accent),#ff7a22);
	border-color:rgba(255,102,0,.55);
	color:#0b0f14
}

.btn-primary:hover{filter:brightness(1.02)}

.btn-ghost{
	background:transparent
}

.footnote{
	position:absolute;
	left:18px;
	right:18px;
	bottom:18px;
	color:var(--muted);
	font-size:12px
}

.hero{
	margin-top:16px;
	grid-template-columns:1.2fr .8fr;
	gap:16px
}

.hero-card{
	padding:18px;
	border:1px solid var(--line);
	border-radius:calc(var(--r) + 4px);
	background:rgba(255,255,255,.02);
	box-shadow:var(--shadow)
}

.kicker{
	display:inline-flex;
	padding:6px 10px;
	border-radius:999px;
	background:var(--accent2);
	border:1px solid rgba(255,102,0,.25);
	color:rgba(255,255,255,.86);
	font-weight:700;
	font-size:12px
}

.h1{
	margin:12px 0 8px;
	font-size:34px;
	letter-spacing:-.02em
}

.sub{
	margin:0;
	color:var(--muted);
	line-height:1.55
}

.cta{
	margin-top:14px;
	display:flex;
	gap:10px;
	flex-wrap:wrap
}

.stats{
	margin-top:16px;
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:10px
}

.stat{
	padding:12px;
	border-radius:14px;
	border:1px solid var(--line);
	background:rgba(0,0,0,.18)
}

.statnum{font-weight:800}
.statlabel{margin-top:2px;color:var(--muted);font-size:12px}

.panel{
	padding:18px;
	border:1px solid var(--line);
	border-radius:calc(var(--r) + 4px);
	background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.015));
	box-shadow:var(--shadow)
}

.paneltitle{font-weight:800}
.panelbody{margin-top:10px;color:var(--muted);line-height:1.6}

.grid{
	margin-top:16px;
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:16px
}

.card{
	padding:16px;
	border:1px solid var(--line);
	border-radius:calc(var(--r) + 4px);
	background:rgba(255,255,255,.02);
	box-shadow:var(--shadow)
}

.cardtitle{font-weight:800}
.cardbody{margin-top:10px;color:var(--muted);line-height:1.6}
.muted{color:var(--muted)}

.pillrow{
	margin-top:12px;
	display:flex;
	gap:8px;
	flex-wrap:wrap
}

.pill{
	padding:6px 10px;
	border-radius:999px;
	border:1px solid var(--line);
	background:rgba(0,0,0,.18);
	color:var(--text);
	font-size:12px;
	font-weight:600
}

.list{margin:0;padding-left:18px}
.list li{margin:6px 0}

.kv{
	display:grid;
	grid-template-columns:110px 1fr;
	gap:10px 12px;
	align-items:start
}

.k{color:var(--text);font-weight:700}
.v{color:var(--muted)}

.form{display:flex;flex-direction:column;gap:12px}
.row{display:flex;flex-direction:column;gap:6px}

.label{
	font-size:12px;
	color:var(--text);
	font-weight:700
}

.input{
	padding:10px 12px;
	border-radius:14px;
	border:1px solid var(--line);
	background:rgba(0,0,0,.2);
	color:var(--text);
	outline:none
}

.input:focus{
	border-color:rgba(255,102,0,.55);
	box-shadow:0 0 0 3px rgba(255,102,0,.18)
}

.linkrow{display:flex;flex-direction:column;gap:8px}

.link{
	color:var(--text);
	text-decoration:none;
	border-bottom:1px dashed rgba(255,102,0,.35);
	width:max-content
}

.link:hover{
	color:#fff;
	border-bottom-color:rgba(255,102,0,.7)
}

.footer{
	margin-top:18px;
	padding:14px 2px 0;
	color:var(--muted);
	font-size:12px
}

.spacer{height:8px}
.spanfull{margin-top:16px}

.hamburger{
	display:none;
	width:44px;
	height:44px;
	border-radius:14px;
	border:1px solid var(--line);
	background:rgba(255,255,255,.02);
	cursor:pointer;
	padding:11px;
	align-items:center;
	justify-content:center
}

.hamburger-line{
	display:block;
	width:100%;
	height:3px;
	background:var(--icon);
	opacity:1;
	border-radius:3px
}

.hamburger-line + .hamburger-line{
	margin-top:3px
}

.hamburger:hover{
	background:rgba(255,255,255,.06)
}

.dropdown{
	margin-top:12px;
	border:1px solid var(--line);
	border-radius:18px;
	background:rgba(255,255,255,.02);
	box-shadow:var(--shadow);
	padding:12px
}

.dropdown-nav{
	display:flex;
	flex-direction:column;
	gap:8px
}

.dropdown-item{
	padding:12px 12px;
	border-radius:14px;
	text-decoration:none;
	color:var(--text);
	border:1px solid transparent;
	background:rgba(255,255,255,.02)
}

.dropdown-item:hover{
	background:rgba(255,255,255,.06);
	border-color:var(--line)
}

.dropdown-actions{
	margin-top:10px;
	display:grid;
	grid-template-columns:1fr;
	gap:10px
}

@media (max-width:960px){
	.shell{grid-template-columns:1fr}

	.sidebar{
		position:relative;
		height:auto;
		padding:14px;
		border-right:none;
		border-bottom:1px solid var(--line)
	}

	.main{
		max-width:100%;
		padding:14px
	}

	.hero{grid-template-columns:1fr}
	.grid{grid-template-columns:1fr}

	.brand{
		flex:1;
		box-shadow:none
	}

	.desktop-only{
		display:none
	}

	.hamburger{
		display:flex;
		flex-direction: column;
		align-items:center;
		justify-content:center
	}

	.footnote{
		position:relative;
		left:0;
		right:0;
		bottom:0;
		margin-top:10px
	}
}

@media (min-width:1200px){
	.shell{
		grid-template-columns:320px 1fr
	}

	.main{
		max-width:1520px;
		margin:0 auto;
		width:100%;
		padding:22px 28px 34px
	}

	.h1{
		font-size:40px
	}

	.hero-card{
		padding:22px
	}

	.panel{
		padding:22px
	}

	.card{
		padding:18px
	}
}

@media (min-width:1600px){
	.main{
		max-width:1680px
	}

	.hero{
		grid-template-columns:1.45fr .55fr;
		gap:18px
	}
}
